pub type GeomResult<T> = Result<T, GeomError>;
Result type for geometric operations
pub enum GeomResult<T> { Ok(T), Err(GeomError), }
Contains the success value
Contains the error value