pub struct SpecialValue {
pub index: u32,
pub kind: SpecialValueKind,
}Expand description
Represents a special floating-point value with its position.
Fields§
§index: u32Index in the original array.
kind: SpecialValueKindType of special value.
Trait Implementations§
Source§impl Clone for SpecialValue
impl Clone for SpecialValue
Source§fn clone(&self) -> SpecialValue
fn clone(&self) -> SpecialValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SpecialValue
impl Debug for SpecialValue
Source§impl PartialEq for SpecialValue
impl PartialEq for SpecialValue
impl Copy for SpecialValue
impl StructuralPartialEq for SpecialValue
Auto Trait Implementations§
impl Freeze for SpecialValue
impl RefUnwindSafe for SpecialValue
impl Send for SpecialValue
impl Sync for SpecialValue
impl Unpin for SpecialValue
impl UnwindSafe for SpecialValue
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