Struct tracing_core::field::ValueSet
source · pub struct ValueSet<'a> {
values: &'a [(&'a Field, Option<&'a (dyn Value + 'a)>)],
fields: &'a FieldSet,
}
Expand description
A set of fields and values for a span.
Fields§
§values: &'a [(&'a Field, Option<&'a (dyn Value + 'a)>)]
§fields: &'a FieldSet
Implementations§
source§impl<'a> ValueSet<'a>
impl<'a> ValueSet<'a>
sourcepub fn callsite(&self) -> Identifier
pub fn callsite(&self) -> Identifier
Returns an Identifier
that uniquely identifies the Callsite
defining the fields this ValueSet
refers to.
sourcepub fn record(&self, visitor: &mut dyn Visit)
pub fn record(&self, visitor: &mut dyn Visit)
Visits all the fields in this ValueSet
with the provided visitor.
sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the number of fields in this ValueSet
that would be visited
by a given visitor to the ValueSet::record()
method.
sourcepub(crate) fn contains(&self, field: &Field) -> bool
pub(crate) fn contains(&self, field: &Field) -> bool
Returns true
if this ValueSet
contains a value for the given Field
.
pub(crate) fn field_set(&self) -> &FieldSet
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ValueSet<'a>
impl<'a> !RefUnwindSafe for ValueSet<'a>
impl<'a> !Send for ValueSet<'a>
impl<'a> !Sync for ValueSet<'a>
impl<'a> Unpin for ValueSet<'a>
impl<'a> !UnwindSafe for ValueSet<'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
Mutably borrows from an owned value. Read more