pub type Maybe = Res<()>;
pub enum Maybe { Ok(()), Err(Error), }
Contains the success value
Contains the error value