Result

Type Alias Result 

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

Domain result type using StygianError

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(StygianError)

Contains the error value