pub struct AutodetectProxyConfiguration {
pub proxy_type: AutodetectProxyConfigurationProxyType,
pub extensible: HashMap<String, Value>,
}Fields§
§proxy_type: AutodetectProxyConfigurationProxyType§extensible: HashMap<String, Value>Implementations§
Source§impl AutodetectProxyConfiguration
impl AutodetectProxyConfiguration
pub fn builder() -> AutodetectProxyConfigurationBuilder
Source§impl AutodetectProxyConfiguration
impl AutodetectProxyConfiguration
pub const IDENTIFIER: &'static str = "session.AutodetectProxyConfiguration"
pub const DOMAIN_DIRECTION: &'static str = "all"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for AutodetectProxyConfiguration
impl Clone for AutodetectProxyConfiguration
Source§fn clone(&self) -> AutodetectProxyConfiguration
fn clone(&self) -> AutodetectProxyConfiguration
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 moreSource§impl Debug for AutodetectProxyConfiguration
impl Debug for AutodetectProxyConfiguration
Source§impl<'de> Deserialize<'de> for AutodetectProxyConfiguration
impl<'de> Deserialize<'de> for AutodetectProxyConfiguration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<AutodetectProxyConfiguration> for ProxyConfiguration
impl From<AutodetectProxyConfiguration> for ProxyConfiguration
Source§fn from(v: AutodetectProxyConfiguration) -> Self
fn from(v: AutodetectProxyConfiguration) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AutodetectProxyConfiguration
impl PartialEq for AutodetectProxyConfiguration
Source§fn eq(&self, other: &AutodetectProxyConfiguration) -> bool
fn eq(&self, other: &AutodetectProxyConfiguration) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<ProxyConfiguration> for AutodetectProxyConfiguration
impl TryFrom<ProxyConfiguration> for AutodetectProxyConfiguration
Source§type Error = ProxyConfiguration
type Error = ProxyConfiguration
The type returned in the event of a conversion error.
impl StructuralPartialEq for AutodetectProxyConfiguration
Auto Trait Implementations§
impl Freeze for AutodetectProxyConfiguration
impl RefUnwindSafe for AutodetectProxyConfiguration
impl Send for AutodetectProxyConfiguration
impl Sync for AutodetectProxyConfiguration
impl Unpin for AutodetectProxyConfiguration
impl UnsafeUnpin for AutodetectProxyConfiguration
impl UnwindSafe for AutodetectProxyConfiguration
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more