pub struct PointFeatureScalarLane {
pub values: [f64; 6],
pub raw_values: [[u8; 8]; 6],
pub value_offsets: [usize; 6],
}Expand description
Exact six-scalar lane selected by a point-feature construction header.
Fields§
§values: [f64; 6]Six finite scalar values in byte order.
raw_values: [[u8; 8]; 6]Exact shifted-binary64 encodings in byte order.
value_offsets: [usize; 6]Scalar marker offsets across the concatenated preceding and target blocks.
Trait Implementations§
Source§impl Clone for PointFeatureScalarLane
impl Clone for PointFeatureScalarLane
Source§fn clone(&self) -> PointFeatureScalarLane
fn clone(&self) -> PointFeatureScalarLane
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 PointFeatureScalarLane
Source§impl Debug for PointFeatureScalarLane
impl Debug for PointFeatureScalarLane
Source§impl PartialEq for PointFeatureScalarLane
impl PartialEq for PointFeatureScalarLane
impl StructuralPartialEq for PointFeatureScalarLane
Auto Trait Implementations§
impl Freeze for PointFeatureScalarLane
impl RefUnwindSafe for PointFeatureScalarLane
impl Send for PointFeatureScalarLane
impl Sync for PointFeatureScalarLane
impl Unpin for PointFeatureScalarLane
impl UnsafeUnpin for PointFeatureScalarLane
impl UnwindSafe for PointFeatureScalarLane
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