pub struct DraftFeatureLeadingIndexLane {
pub declared_count: u8,
pub indices: Vec<(u32, usize)>,
pub raw_indices: Vec<Vec<u8>>,
}Expand description
Counted compact-index lane preceding a draft-feature construction graph.
Fields§
§declared_count: u8Serialized count including the omitted lane owner.
indices: Vec<(u32, usize)>Non-null compact indices in serialized order with absolute token offsets.
raw_indices: Vec<Vec<u8>>Exact compact-index tokens in serialized order.
Trait Implementations§
Source§impl Clone for DraftFeatureLeadingIndexLane
impl Clone for DraftFeatureLeadingIndexLane
Source§fn clone(&self) -> DraftFeatureLeadingIndexLane
fn clone(&self) -> DraftFeatureLeadingIndexLane
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 DraftFeatureLeadingIndexLane
impl Debug for DraftFeatureLeadingIndexLane
impl Eq for DraftFeatureLeadingIndexLane
impl StructuralPartialEq for DraftFeatureLeadingIndexLane
Auto Trait Implementations§
impl Freeze for DraftFeatureLeadingIndexLane
impl RefUnwindSafe for DraftFeatureLeadingIndexLane
impl Send for DraftFeatureLeadingIndexLane
impl Sync for DraftFeatureLeadingIndexLane
impl Unpin for DraftFeatureLeadingIndexLane
impl UnsafeUnpin for DraftFeatureLeadingIndexLane
impl UnwindSafe for DraftFeatureLeadingIndexLane
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