[][src]Struct genelf::elf::elf::ELF

pub struct ELF {
    pub ehdr: Ehdr,
    pub sections: Option<Vec<Vec<u8>>>,
    pub segments: Option<Vec<Vec<u8>>>,
    pub phdrs: Option<Vec<Phdr>>,
    pub shdrs: Option<Vec<Shdr>>,
}

Fields

ehdr: Ehdrsections: Option<Vec<Vec<u8>>>segments: Option<Vec<Vec<u8>>>phdrs: Option<Vec<Phdr>>shdrs: Option<Vec<Shdr>>

Methods

impl ELF[src]

pub fn init() -> ELF[src]

pub fn set_text(&mut self, bytes: Vec<u8>)[src]

pub fn set_shstrtab(&mut self, names: Vec<&str>)[src]

pub fn append_shdr(&mut self, shdr: Shdr)[src]

pub fn bin(&mut self) -> Vec<u8>[src]

Auto Trait Implementations

impl Unpin for ELF

impl Sync for ELF

impl Send for ELF

impl RefUnwindSafe for ELF

impl UnwindSafe for ELF

Blanket Implementations

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.

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

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

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