Trait unreachable::UncheckedResultExt [−][src]
An extension trait for Result<T, E>
providing unchecked unwrapping methods.
Required methods
unsafe fn unchecked_unwrap_ok(self) -> T
[src]
Get the value out of this Result without checking for Err.
unsafe fn unchecked_unwrap_err(self) -> E
[src]
Get the error out of this Result without checking for Ok.