| 15 | |
| 16 | #[derive(Clone)] |
| 17 | pub struct ClientCache { |
| 18 | factory: ClientFactory, |
| 19 | inner: Arc<RwLock<CacheInner>>, |
| 20 | } |
| 21 | |
| 22 | impl ClientCache { |
| 23 | pub fn new(factory: ClientFactory) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected