Struct pdb::MultiRegisterVariableSymbol[][src]

pub struct MultiRegisterVariableSymbol<'t> {
    pub type_index: TypeIndex,
    pub registers: Vec<(Register, RawString<'t>)>,
}

A Register variable spanning multiple registers.

Symbol kind S_MANYREG, S_MANYREG_ST, S_MANYREG2, or S_MANYREG2_ST.

Fields

type_index: TypeIndex

Identifier of the variable type.

registers: Vec<(Register, RawString<'t>)>

Most significant register first.

Trait Implementations

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

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

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

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

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

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

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