#[repr(C, align(8))]pub struct NameEntry {
pub p_proof: U64<LE>,
pub p_name: U64<LE>,
}
Expand description
An individual symbol name entry in the index.
Fields§
§p_proof: U64<LE>
A pointer to the location in the proof stream which introduced this entity.
p_name: U64<LE>
A pointer to the entity’s name as a UTF-8 C string.
Trait Implementations§
Source§impl FromBytes for NameEntry
impl FromBytes for NameEntry
Source§fn new_zeroed() -> Selfwhere
Self: Sized,
fn new_zeroed() -> Selfwhere
Self: Sized,
Creates an instance of
Self
from zeroed bytes.impl Copy for NameEntry
Auto Trait Implementations§
impl Freeze for NameEntry
impl RefUnwindSafe for NameEntry
impl Send for NameEntry
impl Sync for NameEntry
impl Unpin for NameEntry
impl UnwindSafe for NameEntry
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