Type Alias vector::Result

source ·
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§

enum Result<T> {
    Ok(T),
    Err(Box<dyn Error + Sync + Send>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Box<dyn Error + Sync + Send>)

Contains the error value