blob: b2127e4cc1e4b13094db758d044d1bd434157c84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
use syrette::injectable;
use syrette::ptr::{SingletonPtr, TransientPtr};
use crate::interfaces::animal_store::IAnimalStore;
use crate::interfaces::cat::ICat;
use crate::interfaces::dog::IDog;
pub struct AnimalStore
{
dog: SingletonPtr<dyn IDog>,
cat: TransientPtr<dyn ICat>,
}
#[injectable]
impl AnimalStore
{
fn new(dog: SingletonPtr<dyn IDog>, cat: TransientPtr<dyn ICat>) -> Self
{
Self { dog, cat }
}
}
impl IAnimalStore for AnimalStore
{
fn get_dog(&self) -> SingletonPtr<dyn IDog>
{
self.dog.clone()
}
fn get_cat(&self) -> &TransientPtr<dyn ICat>
{
&self.cat
}
}
|