pub trait NoteHeader: Debug + Pod {
    type Endian: Endian;

    fn n_namesz(&self, endian: Self::Endian) -> u32;
    fn n_descsz(&self, endian: Self::Endian) -> u32;
    fn n_type(&self, endian: Self::Endian) -> u32;
}
Expand description

A trait for generic access to NoteHeader32 and NoteHeader64.

Required Associated Types

Required Methods

Implementors