pub trait ImageThunkData: Debug + Pod {
    fn raw(self) -> u64;
fn is_ordinal(self) -> bool;
fn ordinal(self) -> u16;
fn address(self) -> u32; }
Expand description

A trait for generic access to pe::ImageThunkData32 and pe::ImageThunkData64.

Required methods

Return the raw thunk value.

Returns true if the ordinal flag is set.

Return the ordinal portion of the thunk.

Does not check the ordinal flag.

Return the RVA portion of the thunk.

Does not check the ordinal flag.

Implementors