Result

Type Alias Result 

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

Type alias for the result of most PAM methods.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ErrorWith<NoPayload>)

Contains the error value