Enum xmas_elf::header::HeaderPt2[][src]

pub enum HeaderPt2<'a> {
    Header32(&'a HeaderPt2_<P32>),
    Header64(&'a HeaderPt2_<P64>),
}

Variants

Header32(&'a HeaderPt2_<P32>)
Header64(&'a HeaderPt2_<P64>)

Implementations

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

pub fn size(&self) -> usize[src]

pub fn type_(&self) -> Type_[src]

pub fn machine(&self) -> Machine_[src]

pub fn version(&self) -> u32[src]

pub fn header_size(&self) -> u16[src]

pub fn entry_point(&self) -> u64[src]

pub fn ph_offset(&self) -> u64[src]

pub fn sh_offset(&self) -> u64[src]

pub fn ph_entry_size(&self) -> u16[src]

pub fn ph_count(&self) -> u16[src]

pub fn sh_entry_size(&self) -> u16[src]

pub fn sh_count(&self) -> u16[src]

pub fn sh_str_index(&self) -> u16[src]

Trait Implementations

impl<'a> Clone for HeaderPt2<'a>[src]

impl<'a> Copy for HeaderPt2<'a>[src]

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

impl<'a> Display for HeaderPt2<'a>[src]

Auto Trait Implementations

impl<'a> Send for HeaderPt2<'a>

impl<'a> Sync for HeaderPt2<'a>

impl<'a> Unpin for HeaderPt2<'a>

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, 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.