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