pub struct Abs<'a, T> {
pub source: &'a dyn NoiseFn<T>,
}
Expand description
Noise function that outputs the absolute value of the output value from the source function.
Fields§
§source: &'a dyn NoiseFn<T>
Outputs a value.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> !RefUnwindSafe for Abs<'a, T>
impl<'a, T> !Send for Abs<'a, T>
impl<'a, T> !Sync for Abs<'a, T>
impl<'a, T> Unpin for Abs<'a, T>
impl<'a, T> !UnwindSafe for Abs<'a, T>
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