pub trait IWSDiscoveryProviderNotify_Impl: Sized {
    // Required methods
    fn Add(&self, pservice: Option<&IWSDiscoveredService>) -> Result<()>;
    fn Remove(&self, pservice: Option<&IWSDiscoveredService>) -> Result<()>;
    fn SearchFailed(&self, hr: HRESULT, psztag: &PCWSTR) -> Result<()>;
    fn SearchComplete(&self, psztag: &PCWSTR) -> Result<()>;
}

Required Methods§

fn Add(&self, pservice: Option<&IWSDiscoveredService>) -> Result<()>

fn Remove(&self, pservice: Option<&IWSDiscoveredService>) -> Result<()>

fn SearchFailed(&self, hr: HRESULT, psztag: &PCWSTR) -> Result<()>

fn SearchComplete(&self, psztag: &PCWSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§