pub type StreamResult = Result<Pin<Box<dyn Stream<Item = ProviderEvent> + Send>>, ProviderError>;Expand description
Stream result type alias
Aliased Type§
pub enum StreamResult {
Ok(Pin<Box<dyn Stream<Item = ProviderEvent> + Send>>),
Err(ProviderError),
}Variants§
Ok(Pin<Box<dyn Stream<Item = ProviderEvent> + Send>>)
Contains the success value
Err(ProviderError)
Contains the error value