pub trait ResultVoidExt<T> {
    fn void_unwrap(self) -> T;
}
Expand description

Extensions to Result<T, Void>

Required Methods

Get the value out of a wrapper.

Implementors