pub type IOResult<T> = Result<T, IOError>;
A Result type for the IOError.
enum IOResult<T> { Ok(T), Err(IOError), }
Contains the success value
Contains the error value