pub type Output<T, E> = Result<Option<Datum<T>>, Error<E>>;Expand description
A generic output type when something may return an error, nothing, or something with a timestamp.
Aliased Type§
pub enum Output<T, E> {
Ok(Option<Datum<T>>),
Err(Error<E>),
}