pub enum XrefEntryType {
InUse {
offset: u64,
},
InStream {
stream_id: ObjectId,
index: u32,
},
Free,
}Expand description
The type of a cross-reference entry.
Variants§
InUse
In-use object at a direct byte offset in the file.
InStream
Object stored inside an object stream (ObjStm).
Free
A free (deleted) object.
Trait Implementations§
Source§impl Clone for XrefEntryType
impl Clone for XrefEntryType
Source§fn clone(&self) -> XrefEntryType
fn clone(&self) -> XrefEntryType
Returns a duplicate of the value. Read more
1.0.0 · 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 XrefEntryType
impl Debug for XrefEntryType
Source§impl PartialEq for XrefEntryType
impl PartialEq for XrefEntryType
impl Eq for XrefEntryType
impl StructuralPartialEq for XrefEntryType
Auto Trait Implementations§
impl Freeze for XrefEntryType
impl RefUnwindSafe for XrefEntryType
impl Send for XrefEntryType
impl Sync for XrefEntryType
impl Unpin for XrefEntryType
impl UnsafeUnpin for XrefEntryType
impl UnwindSafe for XrefEntryType
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