PublishingResult

Type Alias PublishingResult 

Source
pub type PublishingResult = Result<Dispatch, PublishingError>;
Expand description

Shorthand for a result of a single publishing attempt.

Aliased Type§

pub enum PublishingResult {
    Ok(Dispatch),
    Err(PublishingError),
}

Variants§

§1.0.0

Ok(Dispatch)

Contains the success value

§1.0.0

Err(PublishingError)

Contains the error value