pub struct InMemoryTracingStore { /* private fields */ }Expand description
In-memory implementation of TracingStore
Implementations§
Trait Implementations§
Source§impl Clone for InMemoryTracingStore
impl Clone for InMemoryTracingStore
Source§fn clone(&self) -> InMemoryTracingStore
fn clone(&self) -> InMemoryTracingStore
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for InMemoryTracingStore
impl Default for InMemoryTracingStore
Source§impl TracingStore for InMemoryTracingStore
impl TracingStore for InMemoryTracingStore
fn create_trace(&self, trace: Trace)
fn update_trace(&self, trace: Trace)
fn get_trace(&self, trace_id: &str) -> Option<TraceDetail>
fn list_traces(&self, filter: &TraceFilter) -> Vec<TraceSummary>
fn add_span(&self, span: Span)
fn update_span(&self, span: Span)
fn clear(&self)
Auto Trait Implementations§
impl Freeze for InMemoryTracingStore
impl RefUnwindSafe for InMemoryTracingStore
impl Send for InMemoryTracingStore
impl Sync for InMemoryTracingStore
impl Unpin for InMemoryTracingStore
impl UnsafeUnpin for InMemoryTracingStore
impl UnwindSafe for InMemoryTracingStore
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