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