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