pub trait IOpenServiceActivityOutputContext_Impl: Sized {
    // Required methods
    fn Navigate(
        &self,
        pwzuri: &PCWSTR,
        pwzmethod: &PCWSTR,
        pwzheaders: &PCWSTR,
        ppostdata: Option<&IStream>
    ) -> Result<()>;
    fn CanNavigate(
        &self,
        pwzuri: &PCWSTR,
        pwzmethod: &PCWSTR,
        pwzheaders: &PCWSTR,
        ppostdata: Option<&IStream>
    ) -> Result<BOOL>;
}

Required Methods§

fn Navigate( &self, pwzuri: &PCWSTR, pwzmethod: &PCWSTR, pwzheaders: &PCWSTR, ppostdata: Option<&IStream> ) -> Result<()>

fn CanNavigate( &self, pwzuri: &PCWSTR, pwzmethod: &PCWSTR, pwzheaders: &PCWSTR, ppostdata: Option<&IStream> ) -> Result<BOOL>

Object Safety§

This trait is not object safe.

Implementors§