pub type Result<T> = Result<T, TrackError>;Expand description
Convenience type alias for Results with TrackError.
This type is used throughout the application for operations that may fail.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(TrackError),
}