Struct opentelemetry::sdk::trace::SamplingResult
source · pub struct SamplingResult {
pub decision: SamplingDecision,
pub attributes: Vec<KeyValue>,
pub trace_state: TraceState,
}
Expand description
The result of sampling logic for a given Span
.
Fields§
§decision: SamplingDecision
SamplingDecision
reached by this result
attributes: Vec<KeyValue>
Extra attributes added by this result
trace_state: TraceState
Trace state from parent context, might be modified by sampler
Trait Implementations§
source§impl Clone for SamplingResult
impl Clone for SamplingResult
source§fn clone(&self) -> SamplingResult
fn clone(&self) -> SamplingResult
Returns a copy 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 SamplingResult
impl Debug for SamplingResult
source§impl PartialEq for SamplingResult
impl PartialEq for SamplingResult
source§fn eq(&self, other: &SamplingResult) -> bool
fn eq(&self, other: &SamplingResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SamplingResult
Auto Trait Implementations§
impl RefUnwindSafe for SamplingResult
impl Send for SamplingResult
impl Sync for SamplingResult
impl Unpin for SamplingResult
impl UnwindSafe for SamplingResult
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