pub trait IntoOtError {
// Required method
fn into_ot_error(self) -> otError;
}Expand description
Trait for converting types into otError values.
Required Methods§
Sourcefn into_ot_error(self) -> otError
fn into_ot_error(self) -> otError
Converts this value into a
otsys::otError.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".