pub enum XrefEntry {
Free,
InFile {
offset: u64,
gen: u16,
},
InStream {
stream_num: u32,
index: u32,
},
}Expand description
One cross-reference table entry.
Variants§
Free
A free entry.
InFile
An object stored directly in the file at offset.
InStream
An object stored inside object stream stream_num at index.
Trait Implementations§
impl Copy for XrefEntry
impl Eq for XrefEntry
impl StructuralPartialEq for XrefEntry
Auto Trait Implementations§
impl Freeze for XrefEntry
impl RefUnwindSafe for XrefEntry
impl Send for XrefEntry
impl Sync for XrefEntry
impl Unpin for XrefEntry
impl UnsafeUnpin for XrefEntry
impl UnwindSafe for XrefEntry
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