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