pub struct SetIpProtectionProxyBypassEnabledParams {
pub enabled: bool,
}Expand description
Sets bypass IP Protection Proxy boolean. setIPProtectionProxyBypassEnabled
Fields§
§enabled: boolWhether IP Proxy is being bypassed by devtools; false by default.
Implementations§
Source§impl SetIpProtectionProxyBypassEnabledParams
impl SetIpProtectionProxyBypassEnabledParams
pub fn new(enabled: impl Into<bool>) -> SetIpProtectionProxyBypassEnabledParams
Source§impl SetIpProtectionProxyBypassEnabledParams
impl SetIpProtectionProxyBypassEnabledParams
pub const IDENTIFIER: &'static str = "Network.setIPProtectionProxyBypassEnabled"
Trait Implementations§
Source§impl Clone for SetIpProtectionProxyBypassEnabledParams
impl Clone for SetIpProtectionProxyBypassEnabledParams
Source§fn clone(&self) -> SetIpProtectionProxyBypassEnabledParams
fn clone(&self) -> SetIpProtectionProxyBypassEnabledParams
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<'de> Deserialize<'de> for SetIpProtectionProxyBypassEnabledParams
impl<'de> Deserialize<'de> for SetIpProtectionProxyBypassEnabledParams
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SetIpProtectionProxyBypassEnabledParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SetIpProtectionProxyBypassEnabledParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Method for SetIpProtectionProxyBypassEnabledParams
impl Method for SetIpProtectionProxyBypassEnabledParams
Source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§impl PartialEq for SetIpProtectionProxyBypassEnabledParams
impl PartialEq for SetIpProtectionProxyBypassEnabledParams
Source§fn eq(&self, other: &SetIpProtectionProxyBypassEnabledParams) -> bool
fn eq(&self, other: &SetIpProtectionProxyBypassEnabledParams) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SetIpProtectionProxyBypassEnabledParams
impl Serialize for SetIpProtectionProxyBypassEnabledParams
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for SetIpProtectionProxyBypassEnabledParams
Auto Trait Implementations§
impl Freeze for SetIpProtectionProxyBypassEnabledParams
impl RefUnwindSafe for SetIpProtectionProxyBypassEnabledParams
impl Send for SetIpProtectionProxyBypassEnabledParams
impl Sync for SetIpProtectionProxyBypassEnabledParams
impl Unpin for SetIpProtectionProxyBypassEnabledParams
impl UnwindSafe for SetIpProtectionProxyBypassEnabledParams
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