Struct Event
pub struct Event<'a> { /* private fields */ }
Expand description
Event
s represent single points in time where something occurred during the
execution of a program.
An Event
can be compared to a log record in unstructured logging, but with
two key differences:
Event
s exist within the context of a span. Unlike log lines, they may be located within the trace tree, allowing visibility into the temporal context in which the event occurred, as well as the source code location.- Like spans,
Event
s have structured key-value data known as fields, which may include textual message. In general, a majority of the data associated with an event should be in the event’s fields rather than in the textual message, as the fields are more structured.
Implementations§
§impl<'a> Event<'a>
impl<'a> Event<'a>
pub fn dispatch(metadata: &'static Metadata<'static>, fields: &'a ValueSet<'_>)
Available on crate feature cpu_os_threads
only.
pub fn dispatch(metadata: &'static Metadata<'static>, fields: &'a ValueSet<'_>)
cpu_os_threads
only.Constructs a new Event
with the specified metadata and set of values,
and observes it with the current subscriber.
pub fn new(
metadata: &'static Metadata<'static>,
fields: &'a ValueSet<'a>,
) -> Event<'a>
Available on crate feature cpu_os_threads
only.
pub fn new( metadata: &'static Metadata<'static>, fields: &'a ValueSet<'a>, ) -> Event<'a>
cpu_os_threads
only.Returns a new Event
in the current span, with the specified metadata
and set of values.
pub fn new_child_of(
parent: impl Into<Option<Id>>,
metadata: &'static Metadata<'static>,
fields: &'a ValueSet<'a>,
) -> Event<'a>
Available on crate feature cpu_os_threads
only.
pub fn new_child_of( parent: impl Into<Option<Id>>, metadata: &'static Metadata<'static>, fields: &'a ValueSet<'a>, ) -> Event<'a>
cpu_os_threads
only.Returns a new Event
as a child of the specified span, with the
provided metadata and set of values.
pub fn child_of(
parent: impl Into<Option<Id>>,
metadata: &'static Metadata<'static>,
fields: &'a ValueSet<'_>,
)
Available on crate feature cpu_os_threads
only.
pub fn child_of( parent: impl Into<Option<Id>>, metadata: &'static Metadata<'static>, fields: &'a ValueSet<'_>, )
cpu_os_threads
only.Constructs a new Event
with the specified metadata and set of values,
and observes it with the current subscriber and an explicit parent.
pub fn record(&self, visitor: &mut dyn Visit)
Available on crate feature cpu_os_threads
only.
pub fn record(&self, visitor: &mut dyn Visit)
cpu_os_threads
only.Visits all the fields on this Event
with the specified visitor.
pub fn fields(&self) -> Iter ⓘ
Available on crate feature cpu_os_threads
only.
pub fn fields(&self) -> Iter ⓘ
cpu_os_threads
only.Returns an iterator over the set of values on this Event
.
pub fn metadata(&self) -> &'static Metadata<'static>
Available on crate feature cpu_os_threads
only.
pub fn metadata(&self) -> &'static Metadata<'static>
cpu_os_threads
only.Returns metadata describing this Event
.
pub fn is_root(&self) -> bool
Available on crate feature cpu_os_threads
only.
pub fn is_root(&self) -> bool
cpu_os_threads
only.Returns true if the new event should be a root.
pub fn is_contextual(&self) -> bool
Available on crate feature cpu_os_threads
only.
pub fn is_contextual(&self) -> bool
cpu_os_threads
only.Returns true if the new event’s parent should be determined based on the current context.
If this is true and the current thread is currently inside a span, then that span should be the new event’s parent. Otherwise, if the current thread is not inside a span, then the new event will be the root of its own trace tree.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Event<'a>
impl<'a> !RefUnwindSafe for Event<'a>
impl<'a> !Send for Event<'a>
impl<'a> !Sync for Event<'a>
impl<'a> Unpin for Event<'a>
impl<'a> !UnwindSafe for Event<'a>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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> ⓘ
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> ⓘ
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§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.