diff options
| author | HampusM <hampus@hampusmat.com> | 2022-08-21 14:19:07 +0200 | 
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2022-08-21 18:17:51 +0200 | 
| commit | 8c66b98bca6ed0a2990903fe8e0ea72def5c7be8 (patch) | |
| tree | deed78171051262dba7e8d97eba73a9aaf04dd5e /examples/unbound/interfaces/animal_store.rs | |
| parent | b3e1b993b028bbfa73638236cfbdb50ee478d3f0 (diff) | |
refactor!: change errors to be more sane
BREAKING CHANGE: Major improvements have been made to error types and the error_stack crate is no longer used
Diffstat (limited to 'examples/unbound/interfaces/animal_store.rs')
| -rw-r--r-- | examples/unbound/interfaces/animal_store.rs | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/examples/unbound/interfaces/animal_store.rs b/examples/unbound/interfaces/animal_store.rs new file mode 100644 index 0000000..dc8a4c3 --- /dev/null +++ b/examples/unbound/interfaces/animal_store.rs @@ -0,0 +1,11 @@ +use syrette::ptr::{SingletonPtr, TransientPtr}; + +use crate::interfaces::cat::ICat; +use crate::interfaces::dog::IDog; + +pub trait IAnimalStore +{ +    fn get_dog(&self) -> SingletonPtr<dyn IDog>; + +    fn get_cat(&self) -> &TransientPtr<dyn ICat>; +} | 
