pub enum XrefEntry {
Free,
UnusableFree,
Normal {
offset: u32,
generation: u16,
},
Compressed {
container: u32,
index: u16,
},
}
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for XrefEntry
impl RefUnwindSafe for XrefEntry
impl Send for XrefEntry
impl Sync for XrefEntry
impl Unpin 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