pub type GmshResult<T> = Result<T, GmshError>;
Type alias for Result using GmshError.
GmshError
pub enum GmshResult<T> { Ok(T), Err(GmshError), }
Contains the success value
Contains the error value