Struct rvsim::elf::ElfSectionHeader32[][src]

#[repr(packed)]pub struct ElfSectionHeader32 {
    pub name: u32,
    pub typ: u32,
    pub flags: u32,
    pub addr: u32,
    pub offset: u32,
    pub size: u32,
    pub link: u32,
    pub info: u32,
    pub addralign: u32,
    pub entsize: u32,
}

ELF 32-bit section header.

Fields

name: u32

Index in the string section containing the section name.

typ: u32

Section type, one of ELF_SECTION_TYPE_*.

flags: u32

Flags, a combination of ELF_SECTION_FLAG_*.

addr: u32

Virtual address in memory.

offset: u32

Offset in the file of the setion image.

size: u32

Size of the image in the file.

link: u32

Optional linked section index.

info: u32

Type-specific info.

addralign: u32

Memory alignment in bytes.

entsize: u32

For sections with fixed-sized entries, the size of each entry.

Trait Implementations

impl Clone for ElfSectionHeader32[src]

impl Copy for ElfSectionHeader32[src]

impl Debug for ElfSectionHeader32[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.