pub type GeomResult<T> = Result<T, GeomError>;
A specialized Result type for geometric operations that may return a GeomError.
Result
GeomError
pub enum GeomResult<T> { Ok(T), Err(GeomError), }
Contains the success value
Contains the error value