pub type VoidResult = Result<(), &'static str>;
pub enum VoidResult { Ok(()), Err(&'static str), }
Contains the success value
Contains the error value