pub type TimeOutput<E> = Result<Time, Error<E>>;
Returned from TimeGetter objects, which may return either a time or an error.
TimeGetter
pub enum TimeOutput<E> { Ok(Time), Err(Error<E>), }
Contains the success value
Contains the error value