Type Alias Result
pub type Result<T> = Result<T, Box<dyn Error + Sync + Send>>;Expand description
Vector’s basic result type, defined in terms of Error and generic over
T.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Box<dyn Error + Sync + Send>),
}