pub type Result<T> = Result<T, CounterError>;Expand description
Result type for counter operations.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error<CounterErrorKind>),
}pub type Result<T> = Result<T, CounterError>;Result type for counter operations.
pub enum Result<T> {
Ok(T),
Err(Error<CounterErrorKind>),
}