Type Alias Result

Source
pub type Result<V, E = AllocationError> = Result<V, E>;

Aliased Type§

enum Result<V, E = AllocationError> {
    Ok(V),
    Err(E),
}

Variants§

§1.0.0

Ok(V)

Contains the success value

§1.0.0

Err(E)

Contains the error value