[][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 Copy for Dyn[src]

impl PartialEq<Dyn> for Dyn[src]

impl Clone for Dyn[src]

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

Performs copy-assignment from source. Read more

impl Default for Dyn[src]

impl From<Dyn> for Dyn[src]

impl From<Dyn> for ElfDyn[src]

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]

default fn from_bytes(bytes: &[u8]) -> Result<&Self, Error>[src]

default fn slice_from_bytes(bytes: &[u8]) -> Result<&[Self], Error>[src]

default fn slice_from_bytes_len(
    bytes: &[u8],
    len: usize
) -> Result<&[Self], Error>
[src]

default fn from_mut_bytes(bytes: &mut [u8]) -> Result<&mut Self, Error>[src]

default fn slice_from_mut_bytes(bytes: &mut [u8]) -> Result<&mut [Self], Error>[src]

default fn slice_from_mut_bytes_len(
    bytes: &mut [u8],
    len: usize
) -> Result<&mut [Self], Error>
[src]

default fn copy_from_bytes(&mut self, bytes: &[u8]) -> Result<(), Error>[src]

Auto Trait Implementations

impl Send for Dyn

impl Sync for Dyn

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.