pub trait ResultExtWrapFrom<V, E>: Sized {
// Required method
fn or_wrap_from(_code: u32, _result: Result<V, E>) -> Self;
}
Required Methods§
fn or_wrap_from(_code: u32, _result: Result<V, E>) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.