pub trait IntoAssertableInertia {
// Required method
fn into_assertable_inertia(self) -> AssertableInertia;
}
Required Methods§
Sourcefn into_assertable_inertia(self) -> AssertableInertia
fn into_assertable_inertia(self) -> AssertableInertia
Extract an AssertableInertia
instance from self
. This is only intended for
testing and may interrupt your application at any moment, since it may panic on
any error.
§Panic
If any error comes from an Result
it will panic, since it will always dangerously
unwrap the result.