Skip to main content

VectorResult

Type Alias VectorResult 

Source
pub type VectorResult<T> = Result<T, VectorError>;

Aliased Type§

pub enum VectorResult<T> {
    Ok(T),
    Err(VectorError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(VectorError)

Contains the error value