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