Trait IWMSInternalAdminNetSource2_Impl
pub trait IWMSInternalAdminNetSource2_Impl: IUnknownImpl {
// Required methods
fn SetCredentialsEx(
&self,
bstrrealm: &BSTR,
bstrurl: &BSTR,
fproxy: BOOL,
bstrname: &BSTR,
bstrpassword: &BSTR,
fpersist: BOOL,
fconfirmedgood: BOOL,
) -> Result<()>;
fn GetCredentialsEx(
&self,
bstrrealm: &BSTR,
bstrurl: &BSTR,
fproxy: BOOL,
pdwurlpolicy: *mut NETSOURCE_URLCREDPOLICY_SETTINGS,
pbstrname: *mut BSTR,
pbstrpassword: *mut BSTR,
pfconfirmedgood: *mut BOOL,
) -> Result<()>;
fn DeleteCredentialsEx(
&self,
bstrrealm: &BSTR,
bstrurl: &BSTR,
fproxy: BOOL,
) -> Result<()>;
fn FindProxyForURLEx(
&self,
bstrprotocol: &BSTR,
bstrhost: &BSTR,
bstrurl: &BSTR,
pfproxyenabled: *mut BOOL,
pbstrproxyserver: *mut BSTR,
pdwproxyport: *mut u32,
pdwproxycontext: *mut u32,
) -> Result<()>;
}
Required Methods§
fn SetCredentialsEx( &self, bstrrealm: &BSTR, bstrurl: &BSTR, fproxy: BOOL, bstrname: &BSTR, bstrpassword: &BSTR, fpersist: BOOL, fconfirmedgood: BOOL, ) -> Result<()>
fn GetCredentialsEx( &self, bstrrealm: &BSTR, bstrurl: &BSTR, fproxy: BOOL, pdwurlpolicy: *mut NETSOURCE_URLCREDPOLICY_SETTINGS, pbstrname: *mut BSTR, pbstrpassword: *mut BSTR, pfconfirmedgood: *mut BOOL, ) -> Result<()>
fn DeleteCredentialsEx( &self, bstrrealm: &BSTR, bstrurl: &BSTR, fproxy: BOOL, ) -> Result<()>
fn FindProxyForURLEx( &self, bstrprotocol: &BSTR, bstrhost: &BSTR, bstrurl: &BSTR, pfproxyenabled: *mut BOOL, pbstrproxyserver: *mut BSTR, pdwproxyport: *mut u32, pdwproxycontext: *mut u32, ) -> 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.