pub enum RandomType {
Walk,
Logistic,
Henon,
Lorenz,
WhiteNoise,
PinkNoise,
BrownNoise,
}Expand description
Type of random process
Variants§
Walk
Random walk
Logistic
Logistic map (chaos)
Henon
Hénon map
Lorenz
Lorenz system
WhiteNoise
White noise
PinkNoise
Pink noise (1/f)
BrownNoise
Brown noise (1/f²)
Trait Implementations§
Source§impl Clone for RandomType
impl Clone for RandomType
Source§fn clone(&self) -> RandomType
fn clone(&self) -> RandomType
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 RandomType
impl Debug for RandomType
Source§impl PartialEq for RandomType
impl PartialEq for RandomType
Source§fn eq(&self, other: &RandomType) -> bool
fn eq(&self, other: &RandomType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for RandomType
impl StructuralPartialEq for RandomType
Auto Trait Implementations§
impl Freeze for RandomType
impl RefUnwindSafe for RandomType
impl Send for RandomType
impl Sync for RandomType
impl Unpin for RandomType
impl UnsafeUnpin for RandomType
impl UnwindSafe for RandomType
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