Trait common_testing::assert::Unwrappable
source · pub trait Unwrappable<R> {
// Required method
fn unwrap_into(self) -> R;
}
Expand description
A trait that can be R
, Result<R>
, Option<R>
, Result<Option<R>>
, or
Option<Result<R>>
and can unwrap to return R.