Type Alias gloo::history::HistoryResult

source ·
pub type HistoryResult<T, E = HistoryError> = Result<T, E>;
Available on crate feature history only.
Expand description

The Result type for History.

Aliased Type§

enum HistoryResult<T, E = HistoryError> {
    Ok(T),
    Err(E),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(E)

Contains the error value