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/human.rs | |
parent | 2d1a6b2d432408d74eb57e0bda3f7434617e1070 (diff) |
docs: rename example folder to examples
Diffstat (limited to 'example/src/animals/human.rs')
-rw-r--r-- | example/src/animals/human.rs | 49 |
1 files changed, 0 insertions, 49 deletions
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(); - } -} |