[][src]Struct elf_utilities::section::Section32

pub struct Section32 {
    pub name: String,
    pub header: Shdr32,
    pub bytes: Vec<u8>,
}

Fields

name: Stringheader: Shdr32bytes: Vec<u8>

Implementations

impl Section32[src]

pub fn write_byte_to_index(&mut self, byte: u8, idx: usize)[src]

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

create binary without header

pub fn new_null_section() -> Self[src]

Trait Implementations

impl Clone for Section32[src]

impl Default for Section32[src]

impl Eq for Section32[src]

impl Hash for Section32[src]

impl Ord for Section32[src]

impl PartialEq<Section32> for Section32[src]

impl PartialOrd<Section32> for Section32[src]

impl Section for Section32[src]

type Header = Shdr32

type Symbol = Symbol32

type Dyn = Dyn32

type Rela = Rela32

impl StructuralEq for Section32[src]

impl StructuralPartialEq for Section32[src]

Auto Trait Implementations

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