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