pub type IoResult = Result<Vec<u8>, Error>;
TODO: Add comment
enum IoResult { Ok(Vec<u8>), Err(Error), }
Contains the success value
Contains the error value