pub enum ScalarSample {
Value(f64),
Masked,
}Expand description
One projected cell, with undefined values represented outside the numbers.
Variants§
Value(f64)
A finite scalar value.
Masked
Phase is undefined because amplitude is at or below the declared floor.
Trait Implementations§
Source§impl Clone for ScalarSample
impl Clone for ScalarSample
Source§fn clone(&self) -> ScalarSample
fn clone(&self) -> ScalarSample
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ScalarSample
Source§impl Debug for ScalarSample
impl Debug for ScalarSample
Source§impl PartialEq for ScalarSample
impl PartialEq for ScalarSample
impl StructuralPartialEq for ScalarSample
Auto Trait Implementations§
impl Freeze for ScalarSample
impl RefUnwindSafe for ScalarSample
impl Send for ScalarSample
impl Sync for ScalarSample
impl Unpin for ScalarSample
impl UnsafeUnpin for ScalarSample
impl UnwindSafe for ScalarSample
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