Type Alias exc::Result

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

The result type of exc.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ExchangeError)

Contains the error value