Type Alias SessionResult

Source
pub type SessionResult = Result<Vec<String>, SessionError>;

Aliased Type§

pub enum SessionResult {
    Ok(Vec<String>),
    Err(SessionError),
}

Variants§

§1.0.0

Ok(Vec<String>)

Contains the success value

§1.0.0

Err(SessionError)

Contains the error value

Trait Implementations§