Struct pdb::LocalVariableFlags[][src]

#[non_exhaustive]pub struct LocalVariableFlags {
    pub isparam: bool,
    pub addrtaken: bool,
    pub compgenx: bool,
    pub isaggregate: bool,
    pub isaliased: bool,
    pub isalias: bool,
    pub isretvalue: bool,
    pub isoptimizedout: bool,
    pub isenreg_glob: bool,
    pub isenreg_stat: bool,
}

Flags for a LocalSymbol.

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct {{ .. }} syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
isparam: bool

Variable is a parameter.

addrtaken: bool

Address is taken.

compgenx: bool

Variable is compiler generated.

isaggregate: bool

The symbol is splitted in temporaries, which are treated by compiler as independent entities.

isaliased: bool

Variable has multiple simultaneous lifetimes.

isalias: bool

Represents one of the multiple simultaneous lifetimes.

isretvalue: bool

Represents a function return value.

isoptimizedout: bool

Variable has no lifetimes.

isenreg_glob: bool

Variable is an enregistered global.

isenreg_stat: bool

Variable is an enregistered static.

Trait Implementations

impl Clone for LocalVariableFlags[src]

impl Copy for LocalVariableFlags[src]

impl Debug for LocalVariableFlags[src]

impl Eq for LocalVariableFlags[src]

impl PartialEq<LocalVariableFlags> for LocalVariableFlags[src]

impl StructuralEq for LocalVariableFlags[src]

impl StructuralPartialEq for LocalVariableFlags[src]

impl<'t> TryFromCtx<'t, Endian, [u8]> for LocalVariableFlags[src]

type Error = Error

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.