aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-09-18 14:42:23 +0200
committerHampusM <hampus@hampusmat.com>2022-09-18 14:42:23 +0200
commit8d15cf4888be1261a0e6ec39088dc8104d6f0197 (patch)
tree34b0965ab5ffb2520da32c68a9494da9206daabf /examples
parent5a55fc3934675aa0d96ccb5e8e3466095e2c75a9 (diff)
refactor: add put factory return types in TransientPtr automatically
Diffstat (limited to 'examples')
-rw-r--r--examples/async/interfaces/food.rs3
-rw-r--r--examples/factory/interfaces/user.rs4
2 files changed, 2 insertions, 5 deletions
diff --git a/examples/async/interfaces/food.rs b/examples/async/interfaces/food.rs
index b310a3d..ae5eaef 100644
--- a/examples/async/interfaces/food.rs
+++ b/examples/async/interfaces/food.rs
@@ -1,5 +1,4 @@
use syrette::factory;
-use syrette::ptr::TransientPtr;
pub trait IFood
{
@@ -7,4 +6,4 @@ pub trait IFood
}
#[factory(threadsafe = true)]
-pub type IFoodFactory = dyn Fn() -> TransientPtr<dyn IFood>;
+pub type IFoodFactory = dyn Fn() -> dyn IFood;
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;