| 289 | /// Error type for streaming operations |
| 290 | #[derive(Debug)] |
| 291 | pub struct StreamingError { |
| 292 | inner: BoxError, |
| 293 | kind: StreamingErrorKind, |
| 294 | } |
| 295 | |
| 296 | /// Different kinds of streaming errors for better error handling |
| 297 | #[derive(Debug, Clone, Copy)] |
nothing calls this directly
no outgoing calls
no test coverage detected