pub enum MatcherError {
NoPatterns,
InvalidPattern(String),
ExtractorFailed(ExtractorError),
}
Expand description
Error types for the pattern matcher.
Variants§
NoPatterns
No patterns have been configured.
InvalidPattern(String)
Pattern configuration is invalid.
ExtractorFailed(ExtractorError)
Extractor execution failed.
Trait Implementations§
Source§impl Clone for MatcherError
impl Clone for MatcherError
Source§fn clone(&self) -> MatcherError
fn clone(&self) -> MatcherError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MatcherError
impl Debug for MatcherError
Source§impl Display for MatcherError
impl Display for MatcherError
Source§impl Error for MatcherError
impl Error for MatcherError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for MatcherError
impl PartialEq for MatcherError
impl StructuralPartialEq for MatcherError
Auto Trait Implementations§
impl Freeze for MatcherError
impl RefUnwindSafe for MatcherError
impl Send for MatcherError
impl Sync for MatcherError
impl Unpin for MatcherError
impl UnwindSafe for MatcherError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more