pub type MessageGraphResult<T, P>where
P: InteropProvider, = Result<T, MessageGraphError<<P as InteropProvider>::Error>>;Expand description
A Result alias for the MessageGraphError type.
Aliased Type§
pub enum MessageGraphResult<T, P>where
P: InteropProvider,{
Ok(T),
Err(MessageGraphError<<P as InteropProvider>::Error>),
}Variants§
Ok(T)
Contains the success value
Err(MessageGraphError<<P as InteropProvider>::Error>)
Contains the error value