pub type Result<T> = Result<T, SummaryError>;Expand description
A type alias for the result from the creation of either a Summary or a
SummaryStream, with SummaryError returned in Err variants.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(SummaryError),
}