Returns true if this error is related to client operations
(&self)
| 155 | |
| 156 | /// Returns true if this error is related to client operations |
| 157 | pub fn is_client_error(&self) -> bool { |
| 158 | matches!(self, Self::Client(_)) |
| 159 | } |
| 160 | |
| 161 | /// Returns true if this error is related to streaming operations |
| 162 | pub fn is_streaming_error(&self) -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected