Type Alias PeView

Source
pub type PeView<'a> = Wrap<PeView<'a>, PeView<'a>>;
Expand description

Format agnostic PE view.

Aliased Type§

enum PeView<'a> {
    T32(PeView<'a>),
    T64(PeView<'a>),
}

Variants§

§

T32(PeView<'a>)

§

T64(PeView<'a>)

Implementations§

Source§

impl<'a> PeView<'a>

Source

pub fn from_bytes<T: AsRef<[u8]> + ?Sized>(image: &'a T) -> Result<PeView<'a>>