Struct std::panic::AssertRecoverSafe
[−]
[src]
pub struct AssertRecoverSafe<T>(pub T);
Deprecated since 1.9.0
: renamed to AssertUnwindSafe
Deprecated, renamed to AssertUnwindSafe
Methods
impl<T> AssertRecoverSafe<T>
fn new(t: T) -> AssertRecoverSafe<T>
Deprecated since 1.9.0
: the type's field is now public, construct it directly
Creates a new AssertRecoverSafe
wrapper around the provided type.
fn into_inner(self) -> T
Deprecated since 1.9.0
: the type's field is now public, access it directly
Consumes the AssertRecoverSafe
, returning the wrapped value.