pub trait WithError {
    fn has_err(&self) -> bool;
    fn get_err(&self) -> Option<&RRuleError>;
}

Required Methods

Return true if an error has occurred.

Return the last error while iterating.

Implementors