Skip to main content

DaftResult

Type Alias DaftResult 

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

Result type for extension functions.

Aliased Type§

pub enum DaftResult<T> {
    Ok(T),
    Err(DaftError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(DaftError)

Contains the error value