Result

Type Alias Result 

Source
pub type Result<T> = Result<T, SummaryError>;
Expand description

A type alias for the result from the creation of either a Summary or a SummaryStream, with SummaryError returned in Err variants.

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(SummaryError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(SummaryError)

Contains the error value