Type Alias GmshResult

Source
pub type GmshResult<T> = Result<T, GmshError>;
Expand description

Type alias for Result using GmshError.

Aliased Type§

pub enum GmshResult<T> {
    Ok(T),
    Err(GmshError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(GmshError)

Contains the error value