windows::Win32::System::UpdateAgent

Trait IWebProxy_Impl

pub trait IWebProxy_Impl: IDispatch_Impl {
Show 14 methods // Required methods fn Address(&self) -> Result<BSTR>; fn SetAddress(&self, value: &BSTR) -> Result<()>; fn BypassList(&self) -> Result<IStringCollection>; fn SetBypassList(&self, value: Ref<'_, IStringCollection>) -> Result<()>; fn BypassProxyOnLocal(&self) -> Result<VARIANT_BOOL>; fn SetBypassProxyOnLocal(&self, value: VARIANT_BOOL) -> Result<()>; fn ReadOnly(&self) -> Result<VARIANT_BOOL>; fn UserName(&self) -> Result<BSTR>; fn SetUserName(&self, value: &BSTR) -> Result<()>; fn SetPassword(&self, value: &BSTR) -> Result<()>; fn PromptForCredentials( &self, parentwindow: Ref<'_, IUnknown>, title: &BSTR, ) -> Result<()>; fn PromptForCredentialsFromHwnd( &self, parentwindow: HWND, title: &BSTR, ) -> Result<()>; fn AutoDetect(&self) -> Result<VARIANT_BOOL>; fn SetAutoDetect(&self, value: VARIANT_BOOL) -> Result<()>;
}

Required Methods§

fn Address(&self) -> Result<BSTR>

fn SetAddress(&self, value: &BSTR) -> Result<()>

fn BypassList(&self) -> Result<IStringCollection>

fn SetBypassList(&self, value: Ref<'_, IStringCollection>) -> Result<()>

fn BypassProxyOnLocal(&self) -> Result<VARIANT_BOOL>

fn SetBypassProxyOnLocal(&self, value: VARIANT_BOOL) -> Result<()>

fn ReadOnly(&self) -> Result<VARIANT_BOOL>

fn UserName(&self) -> Result<BSTR>

fn SetUserName(&self, value: &BSTR) -> Result<()>

fn SetPassword(&self, value: &BSTR) -> Result<()>

fn PromptForCredentials( &self, parentwindow: Ref<'_, IUnknown>, title: &BSTR, ) -> Result<()>

fn PromptForCredentialsFromHwnd( &self, parentwindow: HWND, title: &BSTR, ) -> Result<()>

fn AutoDetect(&self) -> Result<VARIANT_BOOL>

fn SetAutoDetect(&self, value: VARIANT_BOOL) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§