[][src]Struct elfkit::section::SectionHeader

pub struct SectionHeader {
    pub name: u32,
    pub shtype: SectionType,
    pub flags: SectionFlags,
    pub addr: u64,
    pub offset: u64,
    pub size: u64,
    pub link: u32,
    pub info: u32,
    pub addralign: u64,
    pub entsize: u64,
}

Fields

name: u32shtype: SectionTypeflags: SectionFlagsaddr: u64offset: u64size: u64link: u32info: u32addralign: u64entsize: u64

Methods

impl SectionHeader[src]

pub fn entsize(eh: &Header) -> usize[src]

pub fn from_reader<R>(io: &mut R, eh: &Header) -> Result<SectionHeader, Error> where
    R: Read
[src]

pub fn to_writer<R>(&self, eh: &Header, io: &mut R) -> Result<(), Error> where
    R: Write
[src]

Trait Implementations

impl Default for SectionHeader[src]

impl Clone for SectionHeader[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for SectionHeader[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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