pub enum SamplingError {
SampleTooFar,
}
Expand description
The error returned when we update the internal counter
Variants§
SampleTooFar
The sample were taken too far apart : you have to make sure that the samples were at a distance of (2^16-1)/2 maximum.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SamplingError
impl RefUnwindSafe for SamplingError
impl Send for SamplingError
impl Sync for SamplingError
impl Unpin for SamplingError
impl UnwindSafe for SamplingError
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