type Glb<T> = Result<T, NoGlb>;
enum Glb<T> { Ok(T), Err(NoGlb), }
Contains the success value
Contains the error value