Skip to main content

TestReturnValue

Trait TestReturnValue 

Source
pub trait TestReturnValue {
    // Required method
    fn into_result(self: Box<Self>) -> Result<(), FailureCause>;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl TestReturnValue for ()

Source§

impl<T, E> TestReturnValue for Result<T, E>
where E: Display + Debug + Send + Sync + 'static,

Implementors§