pub trait IMFNetResourceFilter_Impl: Sized {
    // Required methods
    fn OnRedirect(&self, pszurl: &PCWSTR) -> Result<VARIANT_BOOL>;
    fn OnSendingRequest(&self, pszurl: &PCWSTR) -> Result<()>;
}

Required Methods§

fn OnRedirect(&self, pszurl: &PCWSTR) -> Result<VARIANT_BOOL>

fn OnSendingRequest(&self, pszurl: &PCWSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§