Struct pdb::AnnotationReferenceSymbol[][src]

pub struct AnnotationReferenceSymbol<'t> {
    pub sum_name: u32,
    pub symbol_index: SymbolIndex,
    pub module: u16,
    pub name: RawString<'t>,
}

Reference to an annotation.

Symbol kind S_ANNOTATIONREF.

Fields

sum_name: u32

SUC of the name.

symbol_index: SymbolIndex

Symbol index of the referenced symbol.

Note that this symbol might be located in a different module.

module: u16

Index of the module containing the actual symbol.

name: RawString<'t>

Name of the annotation reference.

Trait Implementations

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

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

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

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

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

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

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

impl<'t> TryFromCtx<'t, u16, [u8]> for AnnotationReferenceSymbol<'t>[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.