pub enum LengthDistribution {
Fixed {
value: u32,
},
Uniform {
min: u32,
max: u32,
},
Normal {
mean: f64,
std_dev: f64,
},
LogNormal {
mean: f64,
std_dev: f64,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for LengthDistribution
impl Clone for LengthDistribution
Source§fn clone(&self) -> LengthDistribution
fn clone(&self) -> LengthDistribution
Returns a duplicate 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 LengthDistribution
impl Debug for LengthDistribution
Source§impl<'de> Deserialize<'de> for LengthDistribution
impl<'de> Deserialize<'de> for LengthDistribution
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
Auto Trait Implementations§
impl Freeze for LengthDistribution
impl RefUnwindSafe for LengthDistribution
impl Send for LengthDistribution
impl Sync for LengthDistribution
impl Unpin for LengthDistribution
impl UnsafeUnpin for LengthDistribution
impl UnwindSafe for LengthDistribution
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