[][src]Struct pelite::pe32::headers::Headers

pub struct Headers<P> { /* fields omitted */ }

Describes the PE headers.

Methods

impl<'a, P: Pe<'a>> Headers<P>[src]

pub fn pe(&self) -> P[src]

Gets the PE instance.

pub fn image(&self) -> &'a [u8][src]

Gets the PE headers as a byte slice.

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

Calculates the optional header's CheckSum.

pub fn code_range(&self) -> Range<Rva>[src]

Gets the code range from the optional header.

pub fn image_range(&self) -> Range<Rva>[src]

Gets the full image range excluding the PE headers.

Trait Implementations

impl<P: Clone> Clone for Headers<P>[src]

impl<P: Copy> Copy for Headers<P>[src]

impl<'a, P: Pe<'a>> Serialize for Headers<P>[src]

Auto Trait Implementations

impl<P> Sync for Headers<P> where
    P: Sync

impl<P> Send for Headers<P> where
    P: Send

impl<P> Unpin for Headers<P> where
    P: Unpin

impl<P> UnwindSafe for Headers<P> where
    P: UnwindSafe

impl<P> RefUnwindSafe for Headers<P> where
    P: RefUnwindSafe

Blanket Implementations

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

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]