pub struct SegmentIndex<'a> {
pub rows: Vec<SegmentIndexRow>,
pub padding: &'a [u8],
pub byte_len: usize,
}Expand description
Self-bounded segment index at the start of the canonical UG_PART payload.
Fields§
§rows: Vec<SegmentIndexRow>Complete 12-byte rows before the declared table end.
padding: &'a [u8]Zero to eleven trailing bytes after the last complete row.
byte_len: usizeDeclared payload-relative end of the index.
Trait Implementations§
Source§impl<'a> Clone for SegmentIndex<'a>
impl<'a> Clone for SegmentIndex<'a>
Source§fn clone(&self) -> SegmentIndex<'a>
fn clone(&self) -> SegmentIndex<'a>
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<'a> Debug for SegmentIndex<'a>
impl<'a> Debug for SegmentIndex<'a>
impl<'a> Eq for SegmentIndex<'a>
Source§impl<'a> PartialEq for SegmentIndex<'a>
impl<'a> PartialEq for SegmentIndex<'a>
impl<'a> StructuralPartialEq for SegmentIndex<'a>
Auto Trait Implementations§
impl<'a> Freeze for SegmentIndex<'a>
impl<'a> RefUnwindSafe for SegmentIndex<'a>
impl<'a> Send for SegmentIndex<'a>
impl<'a> Sync for SegmentIndex<'a>
impl<'a> Unpin for SegmentIndex<'a>
impl<'a> UnsafeUnpin for SegmentIndex<'a>
impl<'a> UnwindSafe for SegmentIndex<'a>
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