pub struct Note {
pub ntype: ElfWord,
pub name: String,
pub description: Vec<u8>,
}
Expand description
A note entry. The note is used by compilers and other tools to mark an object file with special information that has special meaning to a particular tool set.
See documentation for NoteSectionAccessor for usage example
Fields§
§ntype: ElfWord
A number that determines, along with the originator’s name, the interpretation of the note contents
name: String
A name identifying the entry’s owner or originator
description: Vec<u8>
The contents of the note. The format and interpretation of the note contents are determined solely by the name and type fields
Auto Trait Implementations§
impl Freeze for Note
impl RefUnwindSafe for Note
impl Send for Note
impl Sync for Note
impl Unpin for Note
impl UnwindSafe for Note
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