pub trait TestReturnValue {
// Required method
fn into_result(self: Box<Self>) -> Result<(), FailureCause>;
}Required Methods§
fn into_result(self: Box<Self>) -> Result<(), FailureCause>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".