Result

Type Alias Result 

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

Result type for operations that could result in an ArtilleryError

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ArtilleryError)

Contains the error value