pub struct NoteAny<'data> {
pub n_type: u64,
pub name: &'data str,
pub desc: &'data [u8],
}
Expand description
Contains the raw fields found in any ELF note. Used for notes that we don’t know how to parse into more specific types.
Fields§
§n_type: u64
§name: &'data str
§desc: &'data [u8]
Trait Implementations§
impl<'data> Eq for NoteAny<'data>
impl<'data> StructuralPartialEq for NoteAny<'data>
Auto Trait Implementations§
impl<'data> Freeze for NoteAny<'data>
impl<'data> RefUnwindSafe for NoteAny<'data>
impl<'data> Send for NoteAny<'data>
impl<'data> Sync for NoteAny<'data>
impl<'data> Unpin for NoteAny<'data>
impl<'data> UnwindSafe for NoteAny<'data>
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