Skip to main content

ChaserResult

Type Alias ChaserResult 

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

Result type alias for chaser-cf operations

Aliased Type§

pub enum ChaserResult<T> {
    Ok(T),
    Err(ChaserError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ChaserError)

Contains the error value