pub trait IExtensionServices_Impl: Sized {
    // Required methods
    fn SetAdditionalHeaders(&self, pwzadditionalheaders: &PCWSTR) -> Result<()>;
    fn SetAuthenticateData(
        &self,
        phwnd: HWND,
        pwzusername: &PCWSTR,
        pwzpassword: &PCWSTR
    ) -> Result<()>;
}

Required Methods§

fn SetAdditionalHeaders(&self, pwzadditionalheaders: &PCWSTR) -> Result<()>

fn SetAuthenticateData( &self, phwnd: HWND, pwzusername: &PCWSTR, pwzpassword: &PCWSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§