Struct pdb::PointerAttributes[][src]

pub struct PointerAttributes(_);

Implementations

impl PointerAttributes[src]

pub fn pointer_kind(self) -> PointerKind[src]

Indicates the type of pointer.

pub fn pointer_mode(self) -> PointerMode[src]

Returns the mode of this pointer.

pub fn pointer_to_member(self) -> bool[src]

Returns true if this points to a member (either data or function).

pub fn is_flat_32(self) -> bool[src]

Returns true if this is a flat 0:32 pointer.

pub fn is_volatile(self) -> bool[src]

Returns true if this pointer is volatile.

pub fn is_const(self) -> bool[src]

Returns true if this pointer is const.

pub fn is_unaligned(self) -> bool[src]

Returns true if this pointer is unaligned.

pub fn is_restrict(self) -> bool[src]

Returns true if this pointer is restricted (allow aggressive opts).

pub fn is_reference(self) -> bool[src]

Is this a C++ reference, as opposed to a C pointer?

pub fn size(self) -> u8[src]

The size of the pointer in bytes.

pub fn is_mocom(self) -> bool[src]

Returns true if this is a MoCOM pointer (^ or %).

Trait Implementations

impl Clone for PointerAttributes[src]

impl Copy for PointerAttributes[src]

impl Debug for PointerAttributes[src]

impl Eq for PointerAttributes[src]

impl PartialEq<PointerAttributes> for PointerAttributes[src]

impl StructuralEq for PointerAttributes[src]

impl StructuralPartialEq for PointerAttributes[src]

Auto Trait Implementations

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.