Returns true if this error is related to cache operations
(&self)
| 150 | |
| 151 | /// Returns true if this error is related to cache operations |
| 152 | pub fn is_cache_error(&self) -> bool { |
| 153 | matches!(self, Self::Cache(_)) |
| 154 | } |
| 155 | |
| 156 | /// Returns true if this error is related to client operations |
| 157 | pub fn is_client_error(&self) -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected