#[repr(u32)]
pub enum Matching {
Continue,
Terminate,
Skip,
}
Expand description
Callback return value used to tell the Chimera matcher what to do after processing this match.
Variants
Continue
Continue matching.
Terminate
Terminate matching.
Skip
Skip remaining matches for this ID and continue.
Trait Implementations
sourceimpl ErrorEventHandler for Matching
impl ErrorEventHandler for Matching
sourceimpl MatchEventHandler<'_> for Matching
impl MatchEventHandler<'_> for Matching
impl Copy for Matching
impl Eq for Matching
impl StructuralEq for Matching
impl StructuralPartialEq for Matching
Auto Trait Implementations
impl RefUnwindSafe for Matching
impl Send for Matching
impl Sync for Matching
impl Unpin for Matching
impl UnwindSafe for Matching
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more