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