pub type CollectorResult<T> = Result<T, CollectorError>;Expand description
The result type used when multiple kinds of errors can be encountered during collection.
Aliased Type§
pub enum CollectorResult<T> {
Ok(T),
Err(CollectorError),
}pub type CollectorResult<T> = Result<T, CollectorError>;The result type used when multiple kinds of errors can be encountered during collection.
pub enum CollectorResult<T> {
Ok(T),
Err(CollectorError),
}