pub struct Entry { /* private fields */ }
Expand description
A table entry in the index.
Implementations§
Source§impl Entry
impl Entry
Sourcepub fn as_name_table<'a>(&self, index: &Index<'a>) -> Option<NameTable<'a>>
pub fn as_name_table<'a>(&self, index: &Index<'a>) -> Option<NameTable<'a>>
If this table entry is a name table, return a NameTable
object to the
name table, or None
otherwise.
Because the name table contains file relative pointers, we need the original index as a parameter to resolve these.
Trait Implementations§
Source§impl Ord for Entry
impl Ord for Entry
Source§impl PartialOrd for Entry
impl PartialOrd for Entry
impl Copy for Entry
impl Eq for Entry
impl StructuralPartialEq for Entry
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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