[][src]Struct elf_utilities::dynamic::Dyn32

#[repr(C)]pub struct Dyn32 {
    pub d_tag: Elf32Sxword,
    pub d_un: Elf32Xword,
}

Fields

d_tag: Elf32Sxword

dynamic entry type

d_un: Elf32Xword

value

Implementations

impl Dyn32[src]

pub fn size() -> usize[src]

pub fn get_type(&self) -> EntryType[src]

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

pub fn deserialize(buf: &[u8], start: usize) -> Result<Self, Box<dyn Error>>[src]

Trait Implementations

impl Clone for Dyn32[src]

impl Debug for Dyn32[src]

impl Default for Dyn32[src]

impl<'de> Deserialize<'de> for Dyn32[src]

impl Eq for Dyn32[src]

impl Hash for Dyn32[src]

impl Ord for Dyn32[src]

impl PartialEq<Dyn32> for Dyn32[src]

impl PartialOrd<Dyn32> for Dyn32[src]

impl Serialize for Dyn32[src]

impl StructuralEq for Dyn32[src]

impl StructuralPartialEq for Dyn32[src]

Auto Trait Implementations

impl RefUnwindSafe for Dyn32

impl Send for Dyn32

impl Sync for Dyn32

impl Unpin for Dyn32

impl UnwindSafe for Dyn32

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.