Skip to main content

SisterResult

Type Alias SisterResult 

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

Result type alias for sister operations (domain errors)

Aliased Type§

pub enum SisterResult<T> {
    Ok(T),
    Err(SisterError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(SisterError)

Contains the error value