Type Alias failure::Fallible

source ·
pub type Fallible<T> = Result<T, Error>;
Expand description

A common result with an Error.

Aliased Type§

enum Fallible<T> {
    Ok(T),
    Err(Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value