[][src]Struct goblin::elf::dynamic::dyn64::Dyn

#[repr(C)]
pub struct Dyn {
    pub d_tag: u64,
    pub d_val: u64,
}

An entry in the dynamic array

Fields

d_tag: u64

Dynamic entry type

d_val: u64

Integer value

Trait Implementations

impl PartialEq<Dyn> for Dyn[src]

impl Copy for Dyn[src]

impl Default for Dyn[src]

impl From<Dyn> for Dyn[src]

impl From<Dyn> for ElfDyn[src]

impl Clone for Dyn[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Dyn[src]

impl<'a> TryFromCtx<'a, Endian, [u8]> for Dyn where
    Dyn: 'a, 
[src]

type Error = Error

type Size = usize

impl<'a> TryIntoCtx<Endian, [u8]> for &'a Dyn[src]

type Error = Error

type Size = usize

impl TryIntoCtx<Endian, [u8]> for Dyn[src]

type Error = Error

type Size = usize

impl SizeWith<Endian> for Dyn[src]

type Units = usize

impl Plain for Dyn[src]

Auto Trait Implementations

impl Send for Dyn

impl Unpin for Dyn

impl Sync for Dyn

impl UnwindSafe for Dyn

impl RefUnwindSafe for Dyn

Blanket Implementations

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