pub enum TraceChunks<T: TraceData> {
V04(Vec<Vec<Span<T>>>),
V05((SharedDict<T::Text>, Vec<Vec<Span>>)),
}Variants§
V04(Vec<Vec<Span<T>>>)
Collection of TraceChunkSpan.
V05((SharedDict<T::Text>, Vec<Vec<Span>>))
Collection of TraceChunkSpan with de-duplicated strings.
Implementations§
Source§impl TraceChunks<BytesData>
impl TraceChunks<BytesData>
pub fn into_tracer_payload_collection(self) -> TracerPayloadCollection
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for TraceChunks<T>
impl<T> RefUnwindSafe for TraceChunks<T>
impl<T> Send for TraceChunks<T>
impl<T> Sync for TraceChunks<T>
impl<T> Unpin for TraceChunks<T>
impl<T> UnsafeUnpin for TraceChunks<T>
impl<T> UnwindSafe for TraceChunks<T>
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