Skip to main content

GeomResult

Type Alias GeomResult 

Source
pub type GeomResult<T> = Result<T, GeomError>;
Expand description

A specialized Result type for geometric operations that may return a GeomError.

Aliased Type§

pub enum GeomResult<T> {
    Ok(T),
    Err(GeomError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(GeomError)

Contains the error value