pub trait IDebugHostData_Impl: Sized + IDebugHostSymbol_Impl {
    // Required methods
    fn GetLocationKind(&self) -> Result<LocationKind>;
    fn GetLocation(&self) -> Result<Location>;
    fn GetValue(&self) -> Result<VARIANT>;
}

Required Methods§

fn GetLocationKind(&self) -> Result<LocationKind>

fn GetLocation(&self) -> Result<Location>

fn GetValue(&self) -> Result<VARIANT>

Object Safety§

This trait is not object safe.

Implementors§