Type Alias 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),
}
pub type HistoryResult<T, E = HistoryError> = Result<T, E>;
The Result type for History.
enum HistoryResult<T, E = HistoryError> {
Ok(T),
Err(E),
}