diff options
author | HampusM <hampus@hampusmat.com> | 2022-07-21 19:50:42 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-07-21 19:50:42 +0200 |
commit | 18f60ba07893c79100c8c576a717059f3da33c84 (patch) | |
tree | ccfe5929b02c0c5a7db5397ba9a1f171294e6d63 /example/src/animals | |
parent | 2d1a6b2d432408d74eb57e0bda3f7434617e1070 (diff) |
docs: rename example folder to examples
Diffstat (limited to 'example/src/animals')
-rw-r--r-- | example/src/animals/cat.rs | 22 | ||||
-rw-r--r-- | example/src/animals/cow.rs | 24 | ||||
-rw-r--r-- | example/src/animals/dog.rs | 22 | ||||
-rw-r--r-- | example/src/animals/human.rs | 49 | ||||
-rw-r--r-- | example/src/animals/mod.rs | 4 |
5 files changed, 0 insertions, 121 deletions
diff --git a/example/src/animals/cat.rs b/example/src/animals/cat.rs deleted file mode 100644 index 153ad4b..0000000 --- a/example/src/animals/cat.rs +++ /dev/null @@ -1,22 +0,0 @@ -use syrette::injectable; - -use crate::interfaces::cat::ICat; - -pub struct Cat {} - -#[injectable(ICat)] -impl Cat -{ - pub fn new() -> Self - { - Self {} - } -} - -impl ICat for Cat -{ - fn meow(&self) - { - println!("Meow!"); - } -} diff --git a/example/src/animals/cow.rs b/example/src/animals/cow.rs deleted file mode 100644 index a75d750..0000000 --- a/example/src/animals/cow.rs +++ /dev/null @@ -1,24 +0,0 @@ -use crate::interfaces::cow::ICow; - -pub struct Cow -{ - moo_cnt: i32, -} - -impl Cow -{ - pub fn new(moo_cnt: i32) -> Self - { - Self { moo_cnt } - } -} - -impl ICow for Cow -{ - fn moo(&self) - { - for _ in 0..self.moo_cnt { - println!("Moo"); - } - } -} diff --git a/example/src/animals/dog.rs b/example/src/animals/dog.rs deleted file mode 100644 index 84959c0..0000000 --- a/example/src/animals/dog.rs +++ /dev/null @@ -1,22 +0,0 @@ -use syrette::injectable; - -use crate::interfaces::dog::IDog; - -pub struct Dog {} - -#[injectable(IDog)] -impl Dog -{ - pub fn new() -> Self - { - Self {} - } -} - -impl IDog for Dog -{ - fn woof(&self) - { - println!("Woof!"); - } -} diff --git a/example/src/animals/human.rs b/example/src/animals/human.rs deleted file mode 100644 index 5bd2f8f..0000000 --- a/example/src/animals/human.rs +++ /dev/null @@ -1,49 +0,0 @@ -use syrette::injectable; -use syrette::ptr::{FactoryPtr, InterfacePtr}; - -use crate::interfaces::cat::ICat; -use crate::interfaces::cow::{CowFactory, ICow}; -use crate::interfaces::dog::IDog; -use crate::interfaces::human::IHuman; - -pub struct Human -{ - dog: InterfacePtr<dyn IDog>, - cat: InterfacePtr<dyn ICat>, - cow_factory: FactoryPtr<CowFactory>, -} - -#[injectable(IHuman)] -impl Human -{ - pub fn new( - dog: InterfacePtr<dyn IDog>, - cat: InterfacePtr<dyn ICat>, - cow_factory: FactoryPtr<CowFactory>, - ) -> Self - { - Self { - dog, - cat, - cow_factory, - } - } -} - -impl IHuman for Human -{ - fn make_pets_make_sounds(&self) - { - println!("Hi doggy!"); - - self.dog.woof(); - - println!("Hi kitty!"); - - self.cat.meow(); - - let cow: Box<dyn ICow> = (self.cow_factory)(3); - - cow.moo(); - } -} diff --git a/example/src/animals/mod.rs b/example/src/animals/mod.rs deleted file mode 100644 index 6511d17..0000000 --- a/example/src/animals/mod.rs +++ /dev/null @@ -1,4 +0,0 @@ -pub mod cat; -pub mod cow; -pub mod dog; -pub mod human; |