| 8 | |
| 9 | #[derive(Debug)] |
| 10 | pub struct DbDropGuard<K, Doc> |
| 11 | where |
| 12 | Doc: Clone + Send + Sync + 'static, |
| 13 | K: Clone |
| 14 | + PartialOrd |
| 15 | + Ord |
| 16 | + PartialEq |
| 17 | + Eq |
| 18 | + Hash |
| 19 | + Send |
| 20 | + 'static |
| 21 | { |
| 22 | storage: RedisStorage<K, Doc>, |
| 23 | } |
| 24 | |
| 25 | #[derive(Debug, Clone)] |
| 26 | pub struct RedisStorage<K, Doc> |
nothing calls this directly
no outgoing calls
no test coverage detected