pub enum RandomType {
Walk,
Logistic,
Henon,
Lorenz,
WhiteNoise,
PinkNoise,
BrownNoise,
}Expand description
Тип случайного процесса
Variants§
Walk
Случайное блуждание
Logistic
Логистическое отображение (хаос)
Henon
Отображение Эно
Lorenz
Отображение Лоренца
WhiteNoise
Белый шум
PinkNoise
Розовый шум (1/f)
BrownNoise
Коричневый шум (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 · 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
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