diff options
author | HampusM <hampus@hampusmat.com> | 2022-09-18 14:42:23 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-09-18 14:42:23 +0200 |
commit | 8d15cf4888be1261a0e6ec39088dc8104d6f0197 (patch) | |
tree | 34b0965ab5ffb2520da32c68a9494da9206daabf /examples/factory/interfaces | |
parent | 5a55fc3934675aa0d96ccb5e8e3466095e2c75a9 (diff) |
refactor: add put factory return types in TransientPtr automatically
Diffstat (limited to 'examples/factory/interfaces')
-rw-r--r-- | examples/factory/interfaces/user.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/factory/interfaces/user.rs b/examples/factory/interfaces/user.rs index aafd0cb..75fbc87 100644 --- a/examples/factory/interfaces/user.rs +++ b/examples/factory/interfaces/user.rs @@ -1,5 +1,4 @@ use syrette::factory; -use syrette::ptr::TransientPtr; pub trait IUser { @@ -9,5 +8,4 @@ pub trait IUser } #[factory] -pub type IUserFactory = - dyn Fn(&'static str, &'static str, &'static str) -> TransientPtr<dyn IUser>; +pub type IUserFactory = dyn Fn(&'static str, &'static str, &'static str) -> dyn IUser; |