Enum zng_app_context::CaptureFilter
source · pub enum CaptureFilter {
None,
All,
ContextVars {
exclude: ContextValueSet,
},
ContextLocals {
exclude: ContextValueSet,
},
Include(ContextValueSet),
Exclude(ContextValueSet),
}
Expand description
Defines a LocalContext::capture_filtered
filter.
Variants§
None
Don’t capture any.
All
Capture all context_local!
values and TracingDispatcherContext
.
ContextVars
Capture all variables not excluded, and no context_local!
.
Fields
§
exclude: ContextValueSet
Vars to not include.
ContextLocals
Capture all context_local!
and TracingDispatcherContext
not excluded, no context variables.
Fields
§
exclude: ContextValueSet
Locals to not include.
Include(ContextValueSet)
Capture only this set.
Exclude(ContextValueSet)
Capture all except this set.
Trait Implementations§
source§impl Clone for CaptureFilter
impl Clone for CaptureFilter
source§fn clone(&self) -> CaptureFilter
fn clone(&self) -> CaptureFilter
Returns a copy 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 CaptureFilter
impl Debug for CaptureFilter
source§impl PartialEq for CaptureFilter
impl PartialEq for CaptureFilter
source§fn eq(&self, other: &CaptureFilter) -> bool
fn eq(&self, other: &CaptureFilter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for CaptureFilter
impl StructuralPartialEq for CaptureFilter
Auto Trait Implementations§
impl Freeze for CaptureFilter
impl RefUnwindSafe for CaptureFilter
impl Send for CaptureFilter
impl Sync for CaptureFilter
impl Unpin for CaptureFilter
impl UnwindSafe for CaptureFilter
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