Trait object::read::pe::ImageThunkData
source · pub trait ImageThunkData: Debug + Pod {
// Required methods
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§
sourcefn is_ordinal(self) -> bool
fn is_ordinal(self) -> bool
Returns true if the ordinal flag is set.
Object Safety§
This trait is not object safe.