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