Enum pdb::IdData[][src]

#[non_exhaustive]pub enum IdData<'t> {
    Function(FunctionId<'t>),
    MemberFunction(MemberFunctionId<'t>),
    BuildInfo(BuildInfoId),
    StringList(StringListId),
    String(StringId<'t>),
    UserDefinedTypeSource(UserDefinedTypeSourceId),
}

Encapsulates parsed data about an Id.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Function(FunctionId<'t>)

Global function, usually inlined.

MemberFunction(MemberFunctionId<'t>)

Member function, usually inlined.

BuildInfo(BuildInfoId)

Tool, version and command line build information.

StringList(StringListId)

A list of substrings.

String(StringId<'t>)

A string.

UserDefinedTypeSource(UserDefinedTypeSourceId)

Source and line of the definition of a User Defined Type (UDT).

Trait Implementations

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

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

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

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

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

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

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

type Error = Error

Auto Trait Implementations

impl<'t> RefUnwindSafe for IdData<'t>

impl<'t> Send for IdData<'t>

impl<'t> Sync for IdData<'t>

impl<'t> Unpin for IdData<'t>

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