pub struct Name<'a> {
pub ptr: u64,
pub name: &'a [u8],
}Expand description
An entry in the name table.
Entries in the name table contain a pointer to the declaration of the item in the proof stream and a nul-terminated string of the name of the item.
Fields§
§ptr: u64§name: &'a [u8]Implementations§
Trait Implementations§
Source§impl<'a> Ord for Name<'a>
impl<'a> Ord for Name<'a>
Source§impl<'a> PartialOrd for Name<'a>
impl<'a> PartialOrd for Name<'a>
impl<'a> Copy for Name<'a>
impl<'a> Eq for Name<'a>
impl<'a> StructuralPartialEq for Name<'a>
Auto Trait Implementations§
impl<'a> Freeze for Name<'a>
impl<'a> RefUnwindSafe for Name<'a>
impl<'a> Send for Name<'a>
impl<'a> Sync for Name<'a>
impl<'a> Unpin for Name<'a>
impl<'a> UnwindSafe for Name<'a>
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