This is unreleased documentation for Yew Next version.
For up-to-date documentation, see the latest version on docs.rs.

Type Alias yew_router::history::HistoryResult

pub type HistoryResult<T, E = HistoryError> = Result<T, E>;
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