pub struct DraftConstructionFixedLane {
pub offset: usize,
pub values: Vec<f64>,
pub markers: Vec<u8>,
pub raw_values: Vec<[u8; 7]>,
pub value_offsets: Vec<usize>,
}Expand description
Complete signed Q1.55 lane in a reconstructed draft graph payload.
Fields§
§offset: usizePayload-relative offset of the fixed discriminator.
values: Vec<f64>Ordered dimensionless Q1.55 values.
markers: Vec<u8>Exact atom markers in value order.
raw_values: Vec<[u8; 7]>Exact seven-byte two’s-complement payloads.
value_offsets: Vec<usize>Payload-relative offsets of the atom markers.
Trait Implementations§
Source§impl Clone for DraftConstructionFixedLane
impl Clone for DraftConstructionFixedLane
Source§fn clone(&self) -> DraftConstructionFixedLane
fn clone(&self) -> DraftConstructionFixedLane
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 moreSource§impl Debug for DraftConstructionFixedLane
impl Debug for DraftConstructionFixedLane
impl StructuralPartialEq for DraftConstructionFixedLane
Auto Trait Implementations§
impl Freeze for DraftConstructionFixedLane
impl RefUnwindSafe for DraftConstructionFixedLane
impl Send for DraftConstructionFixedLane
impl Sync for DraftConstructionFixedLane
impl Unpin for DraftConstructionFixedLane
impl UnsafeUnpin for DraftConstructionFixedLane
impl UnwindSafe for DraftConstructionFixedLane
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