pub enum NoiseMethod<F>{
Gaussian(Normal<F>),
Laplace(Laplace<F>),
Uniform(Uniform<F>),
}Variants§
Auto Trait Implementations§
impl<F> Freeze for NoiseMethod<F>
impl<F> RefUnwindSafe for NoiseMethod<F>
impl<F> Send for NoiseMethod<F>
impl<F> Sync for NoiseMethod<F>
impl<F> Unpin for NoiseMethod<F>
impl<F> UnwindSafe for NoiseMethod<F>
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