pub struct IeProxyConfig {
pub auto_detect: bool,
pub auto_config_url: Option<String>,
pub proxy: Option<String>,
pub proxy_bypass: Option<String>,
}Expand description
IE proxy settings returned from WinHTTP/IE integration APIs.
Fields§
§auto_detect: boolWPAD auto-detect setting.
auto_config_url: Option<String>PAC script URL.
proxy: Option<String>Raw static proxy server value.
proxy_bypass: Option<String>Raw bypass list value.
Trait Implementations§
Source§impl Clone for IeProxyConfig
impl Clone for IeProxyConfig
Source§fn clone(&self) -> IeProxyConfig
fn clone(&self) -> IeProxyConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for IeProxyConfig
impl RefUnwindSafe for IeProxyConfig
impl Send for IeProxyConfig
impl Sync for IeProxyConfig
impl Unpin for IeProxyConfig
impl UnsafeUnpin for IeProxyConfig
impl UnwindSafe for IeProxyConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more