Struct goblin::elf::note::Note [] [src]

pub struct Note<'a> {
    pub n_type: u32,
    pub name: &'a str,
    pub desc: &'a [u8],
}

A 32/64 bit Note struct, with the name and desc pre-parsed

Fields

The type of this note

NUL terminated string, where namesz includes the terminator

arbitrary data of length descsz

Methods

impl<'a> Note<'a>
[src]

[src]

Trait Implementations

impl<'a> Debug for Note<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> TryFromCtx<'a, (usize, Ctx)> for Note<'a>
[src]

[src]