Generic cached value trait
| 102 | |
| 103 | /// Generic cached value trait |
| 104 | pub trait CacheValue: std::fmt::Debug + Clone + Send + Sync { |
| 105 | fn size_bytes(&self) -> usize; |
| 106 | fn is_valid(&self) -> bool { |
| 107 | true |
| 108 | } |
| 109 | } |
nothing calls this directly
no outgoing calls
no test coverage detected