pub trait IDebugOutputCallbacks2_Impl: Sized {
    // 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<()>

Object Safety§

This trait is not object safe.

Implementors§