pub type Result<T> = Result<T, Box<dyn Error + Send + Sync>>;
Vector’s basic result type, defined in terms of Error and generic over T.
Error
T
enum Result<T> { Ok(T), Err(Box<dyn Error + Send + Sync>), }
Contains the success value
Contains the error value