pub enum TraceChunks<T: SpanText> {
V04(Vec<Vec<Span<T>>>),
V05((SharedDict<T>, Vec<Vec<Span>>)),
}Variants§
V04(Vec<Vec<Span<T>>>)
Collection of TraceChunkSpan.
V05((SharedDict<T>, Vec<Vec<Span>>))
Collection of TraceChunkSpan with de-duplicated strings.
Implementations§
Source§impl TraceChunks<BytesString>
impl TraceChunks<BytesString>
pub fn into_tracer_payload_collection(self) -> TracerPayloadCollection
Trait Implementations§
Source§impl<T: Clone + SpanText> Clone for TraceChunks<T>
impl<T: Clone + SpanText> Clone for TraceChunks<T>
Source§fn clone(&self) -> TraceChunks<T>
fn clone(&self) -> TraceChunks<T>
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 moreAuto Trait Implementations§
impl<T> Freeze for TraceChunks<T>
impl<T> RefUnwindSafe for TraceChunks<T>where
T: RefUnwindSafe,
impl<T> Send for TraceChunks<T>where
T: Send,
impl<T> Sync for TraceChunks<T>where
T: Sync,
impl<T> Unpin for TraceChunks<T>where
T: Unpin,
impl<T> UnwindSafe for TraceChunks<T>where
T: UnwindSafe,
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