pub enum XrefEntryKind {
Free,
InUse,
Compressed {
object_stream: ObjectId,
object_index: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for XrefEntryKind
impl Clone for XrefEntryKind
Source§fn clone(&self) -> XrefEntryKind
fn clone(&self) -> XrefEntryKind
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 Debug for XrefEntryKind
impl Debug for XrefEntryKind
Source§impl PartialEq for XrefEntryKind
impl PartialEq for XrefEntryKind
Source§fn eq(&self, other: &XrefEntryKind) -> bool
fn eq(&self, other: &XrefEntryKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for XrefEntryKind
impl Eq for XrefEntryKind
impl StructuralPartialEq for XrefEntryKind
Auto Trait Implementations§
impl Freeze for XrefEntryKind
impl RefUnwindSafe for XrefEntryKind
impl Send for XrefEntryKind
impl Sync for XrefEntryKind
impl Unpin for XrefEntryKind
impl UnsafeUnpin for XrefEntryKind
impl UnwindSafe for XrefEntryKind
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