#[repr(u32)]pub enum NoiseType {
Undefined = 0,
Uniform = 1,
Gaussian = 2,
MultiplicativeGaussian = 3,
Impulse = 4,
Laplacian = 5,
Poisson = 6,
Random = 7,
}
Variants§
Undefined = 0
Uniform = 1
Gaussian = 2
MultiplicativeGaussian = 3
Impulse = 4
Laplacian = 5
Poisson = 6
Random = 7
Trait Implementations§
impl Copy for NoiseType
impl Eq for NoiseType
impl StructuralPartialEq for NoiseType
Auto Trait Implementations§
impl Freeze for NoiseType
impl RefUnwindSafe for NoiseType
impl Send for NoiseType
impl Sync for NoiseType
impl Unpin for NoiseType
impl UnwindSafe for NoiseType
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