Enum lief::pdb::types::simple::SimpleMode
pub enum SimpleMode {
DIRECT,
FAR_POINTER,
HUGE_POINTER,
NEAR_POINTER32,
FAR_POINTER32,
NEAR_POINTER64,
NEAR_POINTER128,
UNKNOWN(u32),
}Variants§
DIRECT
Not a pointer (direct access)
FAR_POINTER
Far pointer
HUGE_POINTER
Huge pointer
NEAR_POINTER32
32-bit Near pointer
FAR_POINTER32
32-bit Far pointer
NEAR_POINTER64
64-bit Near pointer
NEAR_POINTER128
128-bit Near pointer
UNKNOWN(u32)
Trait Implementations§
§impl Clone for SimpleMode
impl Clone for SimpleMode
§fn clone(&self) -> SimpleMode
fn clone(&self) -> SimpleMode
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for SimpleMode
impl Debug for SimpleMode
§impl From<SimpleMode> for u32
impl From<SimpleMode> for u32
§fn from(value: SimpleMode) -> u32
fn from(value: SimpleMode) -> u32
Converts to this type from the input type.
§impl From<u32> for SimpleMode
impl From<u32> for SimpleMode
§impl Hash for SimpleMode
impl Hash for SimpleMode
§impl PartialEq<SimpleMode> for SimpleMode
impl PartialEq<SimpleMode> for SimpleMode
§fn eq(&self, other: &SimpleMode) -> bool
fn eq(&self, other: &SimpleMode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for SimpleMode
impl Eq for SimpleMode
impl StructuralEq for SimpleMode
impl StructuralPartialEq for SimpleMode
Auto Trait Implementations§
impl RefUnwindSafe for SimpleMode
impl Send for SimpleMode
impl Sync for SimpleMode
impl Unpin for SimpleMode
impl UnwindSafe for SimpleMode
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more