pub struct Xref {
pub trailer: Dict,
/* private fields */
}Expand description
The merged cross-reference table plus the (merged) trailer dictionary.
Fields§
§trailer: DictMerged trailer dictionary; keys from newer sections win.
Implementations§
Source§impl Xref
impl Xref
Sourcepub fn merge(&mut self, older: Xref)
pub fn merge(&mut self, older: Xref)
Merges an older section into this one. Entries already present win (sections are walked newest to oldest, first-seen wins); trailer keys already present are kept.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Xref
impl RefUnwindSafe for Xref
impl Send for Xref
impl Sync for Xref
impl Unpin for Xref
impl UnsafeUnpin for Xref
impl UnwindSafe for Xref
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