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