Struct tracing_tunnel::LocalSpans
source · pub struct LocalSpans { /* private fields */ }Available on crate feature
receiver only.Expand description
Subscriber-specific information about tracing spans for a particular execution
(e.g., a WASM module instance).
Unlike PersistedSpans, this information is not serializable and lives along with
the host Subscriber. It is intended to be placed in something like
(an initially empty) HashMap<K, LocalSpans>, where K denotes the execution ID.
Trait Implementations§
source§impl Debug for LocalSpans
impl Debug for LocalSpans
source§impl Default for LocalSpans
impl Default for LocalSpans
source§fn default() -> LocalSpans
fn default() -> LocalSpans
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for LocalSpans
impl Send for LocalSpans
impl Sync for LocalSpans
impl Unpin for LocalSpans
impl UnwindSafe for LocalSpans
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