pub trait IPrintAsyncNotifyRegistration_Impl: Sized {
    // Required methods
    fn RegisterForNotifications(&self) -> Result<()>;
    fn UnregisterForNotifications(&self) -> Result<()>;
}

Required Methods§

fn RegisterForNotifications(&self) -> Result<()>

fn UnregisterForNotifications(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§