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