[][src]Struct opentelemetry_otlp::proto::trace::v1::TraceIdRatioBased

pub struct TraceIdRatioBased {
    pub sampling_ratio: f64,
}

Sampler that tries to uniformly sample traces with a given ratio. The ratio of sampling a trace is equal to that of the specified ratio.

Fields

sampling_ratio: f64

The desired ratio of sampling. Must be within [0.0, 1.0].

Trait Implementations

impl Clone for TraceIdRatioBased[src]

impl Debug for TraceIdRatioBased[src]

impl Default for TraceIdRatioBased[src]

impl Message for TraceIdRatioBased[src]

impl PartialEq<TraceIdRatioBased> for TraceIdRatioBased[src]

impl StructuralPartialEq for TraceIdRatioBased[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FutureExt for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]