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