pub struct SetBypassServiceWorker {
pub method: SetBypassServiceWorkerMethod,
pub params: SetBypassServiceWorkerParams,
}Expand description
Toggles ignoring of service worker for each request. setBypassServiceWorker
Fields§
§method: SetBypassServiceWorkerMethod§params: SetBypassServiceWorkerParamsImplementations§
Source§impl SetBypassServiceWorker
impl SetBypassServiceWorker
pub fn builder() -> SetBypassServiceWorkerBuilder
Source§impl SetBypassServiceWorker
impl SetBypassServiceWorker
pub const IDENTIFIER: &'static str = "Network.setBypassServiceWorker"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetBypassServiceWorker
impl Clone for SetBypassServiceWorker
Source§fn clone(&self) -> SetBypassServiceWorker
fn clone(&self) -> SetBypassServiceWorker
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 CommandResult for SetBypassServiceWorker
impl CommandResult for SetBypassServiceWorker
type Result = SetBypassServiceWorkerResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetBypassServiceWorker
impl Debug for SetBypassServiceWorker
Source§impl<'de> Deserialize<'de> for SetBypassServiceWorker
impl<'de> Deserialize<'de> for SetBypassServiceWorker
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<SetBypassServiceWorker> for BrowserProtocolCommands
impl From<SetBypassServiceWorker> for BrowserProtocolCommands
Source§fn from(v: SetBypassServiceWorker) -> Self
fn from(v: SetBypassServiceWorker) -> Self
Converts to this type from the input type.
Source§impl From<SetBypassServiceWorker> for Command
impl From<SetBypassServiceWorker> for Command
Source§fn from(v: SetBypassServiceWorker) -> Self
fn from(v: SetBypassServiceWorker) -> Self
Converts to this type from the input type.
Source§impl From<SetBypassServiceWorker> for NetworkCommands
impl From<SetBypassServiceWorker> for NetworkCommands
Source§fn from(v: SetBypassServiceWorker) -> Self
fn from(v: SetBypassServiceWorker) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetBypassServiceWorker
impl PartialEq for SetBypassServiceWorker
Source§impl Serialize for SetBypassServiceWorker
impl Serialize for SetBypassServiceWorker
Source§impl TryFrom<BrowserProtocolCommands> for SetBypassServiceWorker
impl TryFrom<BrowserProtocolCommands> for SetBypassServiceWorker
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <SetBypassServiceWorker as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetBypassServiceWorker as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetBypassServiceWorker
impl TryFrom<Command> for SetBypassServiceWorker
Source§impl TryFrom<NetworkCommands> for SetBypassServiceWorker
impl TryFrom<NetworkCommands> for SetBypassServiceWorker
Source§type Error = NetworkCommands
type Error = NetworkCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: NetworkCommands,
) -> Result<Self, <SetBypassServiceWorker as TryFrom<NetworkCommands>>::Error>
fn try_from( e: NetworkCommands, ) -> Result<Self, <SetBypassServiceWorker as TryFrom<NetworkCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetBypassServiceWorker
Auto Trait Implementations§
impl Freeze for SetBypassServiceWorker
impl RefUnwindSafe for SetBypassServiceWorker
impl Send for SetBypassServiceWorker
impl Sync for SetBypassServiceWorker
impl Unpin for SetBypassServiceWorker
impl UnsafeUnpin for SetBypassServiceWorker
impl UnwindSafe for SetBypassServiceWorker
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