pub type Result<T, E = DecrustError> = Result<T, E>;Expand description
A Result type specialized for DecrustError
Aliased Type§
pub enum Result<T, E = DecrustError> {
Ok(T),
Err(E),
}Variants§
Trait Implementations§
Source§impl<E> InfallibleResultExt<E> for Result<Infallible, E>
impl<E> InfallibleResultExt<E> for Result<Infallible, E>
Source§fn extract_err(self) -> E
fn extract_err(self) -> E
Extract the error value from a Result that is known to always be Err Read more