Struct tracing_layer_slack::EventFilters
source · pub struct EventFilters { /* private fields */ }
Expand description
EventFilters describes two optional lists of regular expressions used to filter events.
If provided, each expression is used in either negatively (“does NOT MATCH”) or positively (“does MATCH”) filter against a specified value.
Implementations§
Trait Implementations§
source§impl From<(Option<Regex>, Option<Regex>)> for EventFilters
impl From<(Option<Regex>, Option<Regex>)> for EventFilters
Interpret and convert a pair of regex as a single positive filter and a single negative filter.
source§impl From<(Regex, Regex)> for EventFilters
impl From<(Regex, Regex)> for EventFilters
Interpret and convert a pair of regex as a single positive filter and a single negative filter.
Auto Trait Implementations§
impl Freeze for EventFilters
impl RefUnwindSafe for EventFilters
impl Send for EventFilters
impl Sync for EventFilters
impl Unpin for EventFilters
impl UnwindSafe for EventFilters
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