diff options
author | HampusM <hampus@hampusmat.com> | 2022-07-19 13:11:19 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-07-19 13:11:19 +0200 |
commit | 9ab2f550a25c3e4465afa025e4ffb1294b331bdb (patch) | |
tree | af7d8b999934a27b22782b0081b94c5ef0f3a5de /example/src/animals/human.rs | |
parent | ff71b49f014613729237178f0d3ea374f7d72cd5 (diff) |
docs: split example into multiple files
Diffstat (limited to 'example/src/animals/human.rs')
-rw-r--r-- | example/src/animals/human.rs | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/example/src/animals/human.rs b/example/src/animals/human.rs new file mode 100644 index 0000000..5bd2f8f --- /dev/null +++ b/example/src/animals/human.rs @@ -0,0 +1,49 @@ +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(); + } +} |