Type Alias MessageGraphResult

Source
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§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(MessageGraphError<<P as InteropProvider>::Error>)

Contains the error value