[][src]Struct goblin::pe::debug::ImageDebugDirectory

#[repr(C)]
pub struct ImageDebugDirectory {
    pub characteristics: u32,
    pub time_date_stamp: u32,
    pub major_version: u16,
    pub minor_version: u16,
    pub data_type: u32,
    pub size_of_data: u32,
    pub address_of_raw_data: u32,
    pub pointer_to_raw_data: u32,
}

Fields

characteristics: u32time_date_stamp: u32major_version: u16minor_version: u16data_type: u32size_of_data: u32address_of_raw_data: u32pointer_to_raw_data: u32

Trait Implementations

impl PartialEq<ImageDebugDirectory> for ImageDebugDirectory[src]

impl Clone for ImageDebugDirectory[src]

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

Performs copy-assignment from source. Read more

impl Default for ImageDebugDirectory[src]

impl Copy for ImageDebugDirectory[src]

impl Debug for ImageDebugDirectory[src]

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

type Error = Error

type Size = usize

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

type Error = Error

type Size = usize

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

type Error = Error

type Size = usize

impl SizeWith<Endian> for ImageDebugDirectory[src]

type Units = usize

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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]