pub type NavigationResult<T> = HistoryResult<T>;

Aliased Type§

enum NavigationResult<T> {
    Ok(T),
    Err(HistoryError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(HistoryError)

Contains the error value