Enum relay_sampling::config::DecayingFunction
source · pub enum DecayingFunction {
Linear {
decayed_value: f64,
},
Constant,
}
Expand description
Specifies how to interpolate sample rates for rules with bounded time window.
Variants§
Linear
Apply linear interpolation of the sample rate in the time window.
The rule will start to apply with the configured sample rate at the beginning of the time
window and end with decayed_value
at the end of the time window.
Constant
Apply the sample rate of the rule for the full time window with hard cutoff.
Implementations§
Trait Implementations§
source§impl Clone for DecayingFunction
impl Clone for DecayingFunction
source§fn clone(&self) -> DecayingFunction
fn clone(&self) -> DecayingFunction
Returns a copy of the value. Read more
1.0.0 · 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 DecayingFunction
impl Debug for DecayingFunction
source§impl Default for DecayingFunction
impl Default for DecayingFunction
source§fn default() -> DecayingFunction
fn default() -> DecayingFunction
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DecayingFunction
impl<'de> Deserialize<'de> for DecayingFunction
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for DecayingFunction
impl PartialEq for DecayingFunction
source§impl Serialize for DecayingFunction
impl Serialize for DecayingFunction
impl Copy for DecayingFunction
impl StructuralPartialEq for DecayingFunction
Auto Trait Implementations§
impl Freeze for DecayingFunction
impl RefUnwindSafe for DecayingFunction
impl Send for DecayingFunction
impl Sync for DecayingFunction
impl Unpin for DecayingFunction
impl UnwindSafe for DecayingFunction
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)