pub type SessionResult<T> = Result<T, SessionError>;
pub enum SessionResult<T> { Ok(T), Err(SessionError), }
Contains the success value
Contains the error value