Trait IDebugHostModule_Impl
pub trait IDebugHostModule_Impl: IDebugHostSymbol_Impl {
// Required methods
fn GetImageName(&self, allowpath: u8) -> Result<BSTR>;
fn GetBaseLocation(&self) -> Result<Location>;
fn GetVersion(
&self,
fileversion: *mut u64,
productversion: *mut u64,
) -> Result<()>;
fn FindTypeByName(&self, typename: &PCWSTR) -> Result<IDebugHostType>;
fn FindSymbolByRVA(&self, rva: u64) -> Result<IDebugHostSymbol>;
fn FindSymbolByName(&self, symbolname: &PCWSTR) -> Result<IDebugHostSymbol>;
}
Required Methods§
fn GetImageName(&self, allowpath: u8) -> Result<BSTR>
fn GetBaseLocation(&self) -> Result<Location>
fn GetVersion( &self, fileversion: *mut u64, productversion: *mut u64, ) -> Result<()>
fn FindTypeByName(&self, typename: &PCWSTR) -> Result<IDebugHostType>
fn FindSymbolByRVA(&self, rva: u64) -> Result<IDebugHostSymbol>
fn FindSymbolByName(&self, symbolname: &PCWSTR) -> Result<IDebugHostSymbol>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.