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