pub type CpioResult<T> = Result<T, Error>;
Result type for this crate.
enum CpioResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value