pub type Result<T> = Result<T, TimeError>;
Alias for std::result::Result with the unified TimeError.
std::result::Result
TimeError
enum Result<T> { Ok(T), Err(TimeError), }
Contains the success value
Contains the error value