Type Alias LoginOutput

Source
pub type LoginOutput = Result<Session, Error>;

Aliased Type§

pub enum LoginOutput {
    Ok(Session),
    Err(Error),
}

Variants§

§1.0.0

Ok(Session)

Contains the success value

§1.0.0

Err(Error)

Contains the error value