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