Struct elfio::Note[][src]

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

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.