#[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§impl Debug for TracesSamplingStrategy
impl Debug for TracesSamplingStrategy
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