pub type StreamResult<T> = Result<T, StreamError>;
Expand description
A specialized Result type for streaming tasks.
Aliased Type§
enum StreamResult<T> {
Ok(T),
Err(StreamError),
}
pub type StreamResult<T> = Result<T, StreamError>;
A specialized Result type for streaming tasks.
enum StreamResult<T> {
Ok(T),
Err(StreamError),
}