pub struct NoTracer {}Expand description
This tracer provides no tracing data at all and serves as a default value.
Trait Implementations§
Source§impl Tracer for NoTracer
impl Tracer for NoTracer
Source§fn parse_start(&mut self)
fn parse_start(&mut self)
This method is invoked at the start of event parsing
Source§fn eval_start(&mut self)
fn eval_start(&mut self)
This method is invoked at the start of the evaluation cycle.
Source§fn spawn_start(&mut self, _output: OutputReference)
fn spawn_start(&mut self, _output: OutputReference)
This method is invoked at the start of the spawn evaluation of stream
outputSource§fn spawn_end(&mut self, _output: OutputReference)
fn spawn_end(&mut self, _output: OutputReference)
This method is invoked at the end of the spawn evaluation of stream
outputSource§fn instance_eval_start(&mut self, _output: OutputReference, _instance: &[Value])
fn instance_eval_start(&mut self, _output: OutputReference, _instance: &[Value])
This method is invoked at the start of the evaluation of stream
outputSource§fn instance_eval_end(&mut self, _output: OutputReference, _instance: &[Value])
fn instance_eval_end(&mut self, _output: OutputReference, _instance: &[Value])
This method is invoked at the end of the evaluation of stream
outputSource§fn close_start(&mut self, _output: OutputReference, _instance: &[Value])
fn close_start(&mut self, _output: OutputReference, _instance: &[Value])
This method is invoked at the start of the close evaluation of stream
outputSource§fn close_end(&mut self, _output: OutputReference, _instance: &[Value])
fn close_end(&mut self, _output: OutputReference, _instance: &[Value])
This method is invoked at the end of the close evaluation of stream
outputimpl Copy for NoTracer
Auto Trait Implementations§
impl Freeze for NoTracer
impl RefUnwindSafe for NoTracer
impl Send for NoTracer
impl Sync for NoTracer
impl Unpin for NoTracer
impl UnwindSafe for NoTracer
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more