pub struct ConditionEvaluator;Expand description
Evaluates conditions against event context
Conditions allow hooks to be executed conditionally based on event context values. For now, this is a placeholder implementation that always returns true. Future implementations can support more complex condition expressions.
Implementations§
Source§impl ConditionEvaluator
impl ConditionEvaluator
Auto Trait Implementations§
impl Freeze for ConditionEvaluator
impl RefUnwindSafe for ConditionEvaluator
impl Send for ConditionEvaluator
impl Sync for ConditionEvaluator
impl Unpin for ConditionEvaluator
impl UnwindSafe for ConditionEvaluator
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