aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
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;