Type Alias email::Result

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

The global Result alias of the library.

Refer to the Error documentation for an explanation about the choice of using anyhow crate on the library level.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value