Trait IDebugOutputCallbacks2_Impl
pub trait IDebugOutputCallbacks2_Impl: IUnknownImpl {
// Required methods
fn Output(&self, mask: u32, text: &PCSTR) -> Result<()>;
fn GetInterestMask(&self) -> Result<u32>;
fn Output2(
&self,
which: u32,
flags: u32,
arg: u64,
text: &PCWSTR,
) -> Result<()>;
}
Required Methods§
fn Output(&self, mask: u32, text: &PCSTR) -> Result<()>
fn GetInterestMask(&self) -> Result<u32>
fn Output2(&self, which: u32, flags: u32, arg: u64, text: &PCWSTR) -> Result<()>
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.