Skip to main content

ChannelResult

Type Alias ChannelResult 

Source
pub type ChannelResult = Result<Arc<Channel>>;
Expand description

A channel result returned by a ChannelProvider.

Aliased Type§

pub enum ChannelResult {
    Ok(Arc<Channel>),
    Err(Error),
}

Variants§

§1.0.0

Ok(Arc<Channel>)

Contains the success value

§1.0.0

Err(Error)

Contains the error value