#[non_exhaustive]pub enum EventSamplingStrategy {
FixedRate(f32),
}Expand description
The sampling strategy for events.
Currently, we only support fixed rates. This defaults to Self::FixedRate(1.0).
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 events at a fixed sample rate. The rate should be between 0.0 and 1.0, inclusive.
Trait Implementations§
Source§impl Clone for EventSamplingStrategy
impl Clone for EventSamplingStrategy
Source§fn clone(&self) -> EventSamplingStrategy
fn clone(&self) -> EventSamplingStrategy
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 EventSamplingStrategy
impl Debug for EventSamplingStrategy
Auto Trait Implementations§
impl Freeze for EventSamplingStrategy
impl RefUnwindSafe for EventSamplingStrategy
impl Send for EventSamplingStrategy
impl Sync for EventSamplingStrategy
impl Unpin for EventSamplingStrategy
impl UnsafeUnpin for EventSamplingStrategy
impl UnwindSafe for EventSamplingStrategy
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