pub struct DecodedSpanSnapshot {
pub id: u64,
pub metadata_id: u32,
pub name: String,
pub target: String,
pub level: Level,
pub fields: SmallVec<[DecodedField; 8]>,
}Expand description
Decoded span snapshot from a binary frame.
Fields§
§id: u64§metadata_id: u32§name: String§target: String§level: Level§fields: SmallVec<[DecodedField; 8]>Trait Implementations§
Source§impl Clone for DecodedSpanSnapshot
impl Clone for DecodedSpanSnapshot
Source§fn clone(&self) -> DecodedSpanSnapshot
fn clone(&self) -> DecodedSpanSnapshot
Returns a duplicate 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 DecodedSpanSnapshot
impl Debug for DecodedSpanSnapshot
Source§impl PartialEq for DecodedSpanSnapshot
impl PartialEq for DecodedSpanSnapshot
impl StructuralPartialEq for DecodedSpanSnapshot
Auto Trait Implementations§
impl Freeze for DecodedSpanSnapshot
impl RefUnwindSafe for DecodedSpanSnapshot
impl Send for DecodedSpanSnapshot
impl Sync for DecodedSpanSnapshot
impl Unpin for DecodedSpanSnapshot
impl UnsafeUnpin for DecodedSpanSnapshot
impl UnwindSafe for DecodedSpanSnapshot
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