pub struct DraftFeatureTerminalLane {
pub indices: [u32; 2],
pub raw_indices: [[u8; 2]; 2],
pub index_offsets: [usize; 2],
pub tail: [u8; 3],
pub offset: usize,
}Expand description
End-anchored compact-index lane in a draft-feature payload.
Fields§
§indices: [u32; 2]Two non-null compact indices in serialized order.
raw_indices: [[u8; 2]; 2]Exact two-byte compact-index tokens in serialized order.
index_offsets: [usize; 2]Absolute offsets of the compact-index tokens.
tail: [u8; 3]Three uninterpreted bytes preceding the terminal zero.
offset: usizeAbsolute offset of the first compact-index token.
Trait Implementations§
Source§impl Clone for DraftFeatureTerminalLane
impl Clone for DraftFeatureTerminalLane
Source§fn clone(&self) -> DraftFeatureTerminalLane
fn clone(&self) -> DraftFeatureTerminalLane
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 DraftFeatureTerminalLane
impl Debug for DraftFeatureTerminalLane
impl Eq for DraftFeatureTerminalLane
Source§impl PartialEq for DraftFeatureTerminalLane
impl PartialEq for DraftFeatureTerminalLane
impl StructuralPartialEq for DraftFeatureTerminalLane
Auto Trait Implementations§
impl Freeze for DraftFeatureTerminalLane
impl RefUnwindSafe for DraftFeatureTerminalLane
impl Send for DraftFeatureTerminalLane
impl Sync for DraftFeatureTerminalLane
impl Unpin for DraftFeatureTerminalLane
impl UnsafeUnpin for DraftFeatureTerminalLane
impl UnwindSafe for DraftFeatureTerminalLane
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