pub struct ExponentialConfig {
pub lambda: f64,
}Expand description
Fields§
§lambda: f64The rate parameter.
Implementations§
Trait Implementations§
Source§impl Clone for ExponentialConfig
impl Clone for ExponentialConfig
Source§fn clone(&self) -> ExponentialConfig
fn clone(&self) -> ExponentialConfig
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 ExponentialConfig
impl Debug for ExponentialConfig
Source§impl<'de> Deserialize<'de> for ExponentialConfig
impl<'de> Deserialize<'de> for ExponentialConfig
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 Serialize for ExponentialConfig
impl Serialize for ExponentialConfig
impl Copy for ExponentialConfig
Auto Trait Implementations§
impl Freeze for ExponentialConfig
impl RefUnwindSafe for ExponentialConfig
impl Send for ExponentialConfig
impl Sync for ExponentialConfig
impl Unpin for ExponentialConfig
impl UnwindSafe for ExponentialConfig
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