pub trait StrictAssertUnwrapExt<T> {
    unsafe fn strict_unwrap_unchecked(self) -> T;
}
Expand description

Unwrapping using strict_asserts

Required Methods§

Unchecked unwrap, with a strict_assert backed assertion of validitly.

Safety

It must be valid to call unwrap_unchecked on this value.

Implementations on Foreign Types§

Implementors§