pub trait InfallibleExt<T, E> {
// Required method
fn expect_infallible(self) -> T;
}
Required Methods§
Sourcefn expect_infallible(self) -> T
fn expect_infallible(self) -> T
Unwraps a result informing that this operation is expected to be infallible.