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