Create a serialization error
(error: E)
| 335 | |
| 336 | /// Create a serialization error |
| 337 | pub fn serialization<E: Into<BoxError>>(error: E) -> Self { |
| 338 | Self::with_kind(error, StreamingErrorKind::Serialization) |
| 339 | } |
| 340 | |
| 341 | /// Create a concurrency error |
| 342 | pub fn concurrency<E: Into<BoxError>>(error: E) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected