pub type Result<T> = Result<T, LoopError>;
Result type for strange loop operations
pub enum Result<T> { Ok(T), Err(LoopError), }
Contains the success value
Contains the error value