#[non_exhaustive]pub enum TracesSamplingStrategy {
FixedRate(f32),
Function(Arc<TracesSampler>),
Disabled,
}Expand description
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
FixedRate(f32)
Sample the trace at a fixed sample rate. The rate should be between 0.0 and 1.0, inclusive.
Function(Arc<TracesSampler>)
Sample the traces using a TracesSampler function.
Disabled
Disable tracing.
Trait Implementations§
Source§impl Clone for TracesSamplingStrategy
impl Clone for TracesSamplingStrategy
Source§fn clone(&self) -> TracesSamplingStrategy
fn clone(&self) -> TracesSamplingStrategy
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 Debug for TracesSamplingStrategy
impl Debug for TracesSamplingStrategy
Source§impl Default for TracesSamplingStrategy
impl Default for TracesSamplingStrategy
Source§fn default() -> TracesSamplingStrategy
fn default() -> TracesSamplingStrategy
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for TracesSamplingStrategy
impl !UnwindSafe for TracesSamplingStrategy
impl Freeze for TracesSamplingStrategy
impl Send for TracesSamplingStrategy
impl Sync for TracesSamplingStrategy
impl Unpin for TracesSamplingStrategy
impl UnsafeUnpin for TracesSamplingStrategy
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