Struct pdb::ExportSymbol[][src]

pub struct ExportSymbol<'t> {
    pub ordinal: u16,
    pub flags: ExportSymbolFlags,
    pub name: RawString<'t>,
}

An exported symbol.

Symbol kind S_EXPORT.

Fields

ordinal: u16

Ordinal of the symbol.

flags: ExportSymbolFlags

Flags declaring the type of the exported symbol.

name: RawString<'t>

The name of the exported symbol.

Trait Implementations

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

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

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

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

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

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

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

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

type Error = Error

Auto Trait Implementations

impl<'t> RefUnwindSafe for ExportSymbol<'t>

impl<'t> Send for ExportSymbol<'t>

impl<'t> Sync for ExportSymbol<'t>

impl<'t> Unpin for ExportSymbol<'t>

impl<'t> UnwindSafe for ExportSymbol<'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.