Struct synfx_dsp::AtomicFloatPair
source · [−]pub struct AtomicFloatPair { /* private fields */ }
Expand description
The AtomicFloatPair can store two f32
numbers atomically.
This is useful for storing eg. min and max values of a sampled signal.
Implementations
Trait Implementations
sourceimpl Debug for AtomicFloatPair
impl Debug for AtomicFloatPair
sourceimpl Default for AtomicFloatPair
impl Default for AtomicFloatPair
sourceimpl Display for AtomicFloatPair
impl Display for AtomicFloatPair
sourceimpl From<(f32, f32)> for AtomicFloatPair
impl From<(f32, f32)> for AtomicFloatPair
sourceimpl From<AtomicFloatPair> for (f32, f32)
impl From<AtomicFloatPair> for (f32, f32)
sourcefn from(value: AtomicFloatPair) -> Self
fn from(value: AtomicFloatPair) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for AtomicFloatPair
impl Send for AtomicFloatPair
impl Sync for AtomicFloatPair
impl Unpin for AtomicFloatPair
impl UnwindSafe for AtomicFloatPair
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more