pub struct XrefTable {
pub sections: Vec<XrefSection>,
pub start_offset: u64,
}Expand description
The complete cross-reference table, potentially spanning multiple sections.
Fields§
§sections: Vec<XrefSection>§start_offset: u64The byte offset of the last (newest) xref start in the file.
Used by incremental saves to set the /Prev trailer key.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for XrefTable
impl RefUnwindSafe for XrefTable
impl Send for XrefTable
impl Sync for XrefTable
impl Unpin for XrefTable
impl UnsafeUnpin for XrefTable
impl UnwindSafe for XrefTable
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