pub trait ResultExt {
// Required method
fn into_raw_zx_status(self) -> zx_status_t;
}Required Methods§
Sourcefn into_raw_zx_status(self) -> zx_status_t
fn into_raw_zx_status(self) -> zx_status_t
Returns ZX_OK if Self is Ok, otherwise, prints an error and turns Self into a corresponding ZX_ERR_*.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".