pub trait IntoResult<Out>: Sized {
// Required method
fn into_result(self) -> Result<Out, RunSystemError>;
}
Expand description
Required Methods§
Sourcefn into_result(self) -> Result<Out, RunSystemError>
fn into_result(self) -> Result<Out, RunSystemError>
Converts this type into the system output type.
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.