Struct goblin::pe::data_directories::DataDirectories[][src]

pub struct DataDirectories {
    pub data_directories: [Option<DataDirectory>; 16],
}

Fields

data_directories: [Option<DataDirectory>; 16]

Implementations

impl DataDirectories[src]

pub fn parse(bytes: &[u8], count: usize, offset: &mut usize) -> Result<Self>[src]

pub fn get_export_table(&self) -> &Option<DataDirectory>[src]

pub fn get_import_table(&self) -> &Option<DataDirectory>[src]

pub fn get_resource_table(&self) -> &Option<DataDirectory>[src]

pub fn get_exception_table(&self) -> &Option<DataDirectory>[src]

pub fn get_certificate_table(&self) -> &Option<DataDirectory>[src]

pub fn get_base_relocation_table(&self) -> &Option<DataDirectory>[src]

pub fn get_debug_table(&self) -> &Option<DataDirectory>[src]

pub fn get_architecture(&self) -> &Option<DataDirectory>[src]

pub fn get_global_ptr(&self) -> &Option<DataDirectory>[src]

pub fn get_tls_table(&self) -> &Option<DataDirectory>[src]

pub fn get_load_config_table(&self) -> &Option<DataDirectory>[src]

pub fn get_bound_import_table(&self) -> &Option<DataDirectory>[src]

pub fn get_import_address_table(&self) -> &Option<DataDirectory>[src]

pub fn get_delay_import_descriptor(&self) -> &Option<DataDirectory>[src]

pub fn get_clr_runtime_header(&self) -> &Option<DataDirectory>[src]

Trait Implementations

impl Clone for DataDirectories[src]

impl Copy for DataDirectories[src]

impl Debug for DataDirectories[src]

impl Default for DataDirectories[src]

impl PartialEq<DataDirectories> for DataDirectories[src]

impl StructuralPartialEq for DataDirectories[src]

Auto Trait Implementations

impl RefUnwindSafe for DataDirectories

impl Send for DataDirectories

impl Sync for DataDirectories

impl Unpin for DataDirectories

impl UnwindSafe for DataDirectories

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.