pub struct StopAllWorkers {
pub method: StopAllWorkersMethod,
pub params: StopAllWorkersParams,
}Fields§
§method: StopAllWorkersMethod§params: StopAllWorkersParamsImplementations§
Source§impl StopAllWorkers
impl StopAllWorkers
pub fn builder() -> StopAllWorkersBuilder
Source§impl StopAllWorkers
impl StopAllWorkers
pub const IDENTIFIER: &'static str = "ServiceWorker.stopAllWorkers"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for StopAllWorkers
impl Clone for StopAllWorkers
Source§fn clone(&self) -> StopAllWorkers
fn clone(&self) -> StopAllWorkers
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 StopAllWorkers
impl CommandResult for StopAllWorkers
type Result = StopAllWorkersResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for StopAllWorkers
impl Debug for StopAllWorkers
Source§impl<'de> Deserialize<'de> for StopAllWorkers
impl<'de> Deserialize<'de> for StopAllWorkers
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<StopAllWorkers> for BrowserProtocolCommands
impl From<StopAllWorkers> for BrowserProtocolCommands
Source§fn from(v: StopAllWorkers) -> Self
fn from(v: StopAllWorkers) -> Self
Converts to this type from the input type.
Source§impl From<StopAllWorkers> for Command
impl From<StopAllWorkers> for Command
Source§fn from(v: StopAllWorkers) -> Self
fn from(v: StopAllWorkers) -> Self
Converts to this type from the input type.
Source§impl From<StopAllWorkers> for ServiceWorkerCommands
impl From<StopAllWorkers> for ServiceWorkerCommands
Source§fn from(v: StopAllWorkers) -> Self
fn from(v: StopAllWorkers) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StopAllWorkers
impl PartialEq for StopAllWorkers
Source§impl Serialize for StopAllWorkers
impl Serialize for StopAllWorkers
Source§impl TryFrom<BrowserProtocolCommands> for StopAllWorkers
impl TryFrom<BrowserProtocolCommands> for StopAllWorkers
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, <StopAllWorkers as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <StopAllWorkers as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for StopAllWorkers
impl TryFrom<Command> for StopAllWorkers
Source§impl TryFrom<ServiceWorkerCommands> for StopAllWorkers
impl TryFrom<ServiceWorkerCommands> for StopAllWorkers
Source§type Error = ServiceWorkerCommands
type Error = ServiceWorkerCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: ServiceWorkerCommands,
) -> Result<Self, <StopAllWorkers as TryFrom<ServiceWorkerCommands>>::Error>
fn try_from( e: ServiceWorkerCommands, ) -> Result<Self, <StopAllWorkers as TryFrom<ServiceWorkerCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for StopAllWorkers
Auto Trait Implementations§
impl Freeze for StopAllWorkers
impl RefUnwindSafe for StopAllWorkers
impl Send for StopAllWorkers
impl Sync for StopAllWorkers
impl Unpin for StopAllWorkers
impl UnsafeUnpin for StopAllWorkers
impl UnwindSafe for StopAllWorkers
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