Struct google_androidmanagement1::ProxyInfo [−][src]
pub struct ProxyInfo {
pub pac_uri: Option<String>,
pub excluded_hosts: Option<Vec<String>>,
pub host: Option<String>,
pub port: Option<i32>,
}Configuration info for an HTTP proxy. For a direct proxy, set the host, port, and excluded_hosts fields. For a PAC script proxy, set the pac_uri field.
This type is not used in any activity, and only used as part of another schema.
Fields
pac_uri: Option<String>
The URI of the PAC script used to configure the proxy.
excluded_hosts: Option<Vec<String>>
For a direct proxy, the hosts for which the proxy is bypassed. The host names may contain wildcards such as *.example.com.
host: Option<String>
The host of the direct proxy.
port: Option<i32>
The port of the direct proxy.
Trait Implementations
impl Default for ProxyInfo[src]
impl Default for ProxyInfoimpl Clone for ProxyInfo[src]
impl Clone for ProxyInfofn clone(&self) -> ProxyInfo[src]
fn clone(&self) -> ProxyInfoReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for ProxyInfo[src]
impl Debug for ProxyInfofn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Part for ProxyInfo[src]
impl Part for ProxyInfo