VortexResult

Type Alias VortexResult 

Source
pub type VortexResult<T> = Result<T, VortexError>;
Expand description

A type alias for Results that return VortexErrors as their error type.

Aliased Type§

pub enum VortexResult<T> {
    Ok(T),
    Err(VortexError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(VortexError)

Contains the error value