Struct pdb::CompileFlagsSymbol[][src]

pub struct CompileFlagsSymbol<'t> {
    pub language: SourceLanguage,
    pub flags: CompileFlags,
    pub cpu_type: CPUType,
    pub frontend_version: CompilerVersion,
    pub backend_version: CompilerVersion,
    pub version_string: RawString<'t>,
}

Flags used to compile a module.

Symbol kind S_COMPILE2, S_COMPILE2_ST, or S_COMPILE3.

Fields

language: SourceLanguage

The source code language.

flags: CompileFlags

Compiler flags.

cpu_type: CPUType

Machine type of the compilation target.

frontend_version: CompilerVersion

Version of the compiler frontend.

backend_version: CompilerVersion

Version of the compiler backend.

version_string: RawString<'t>

Display name of the compiler.

Trait Implementations

impl<'t> Clone for CompileFlagsSymbol<'t>[src]

impl<'t> Copy for CompileFlagsSymbol<'t>[src]

impl<'t> Debug for CompileFlagsSymbol<'t>[src]

impl<'t> Eq for CompileFlagsSymbol<'t>[src]

impl<'t> PartialEq<CompileFlagsSymbol<'t>> for CompileFlagsSymbol<'t>[src]

impl<'t> StructuralEq for CompileFlagsSymbol<'t>[src]

impl<'t> StructuralPartialEq for CompileFlagsSymbol<'t>[src]

impl<'t> TryFromCtx<'t, u16, [u8]> for CompileFlagsSymbol<'t>[src]

type Error = Error

Auto Trait Implementations

impl<'t> RefUnwindSafe for CompileFlagsSymbol<'t>

impl<'t> Send for CompileFlagsSymbol<'t>

impl<'t> Sync for CompileFlagsSymbol<'t>

impl<'t> Unpin for CompileFlagsSymbol<'t>

impl<'t> UnwindSafe for CompileFlagsSymbol<'t>

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.