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