pub struct SkipWaiting {
pub method: SkipWaitingMethod,
pub params: SkipWaitingParams,
}Fields§
§method: SkipWaitingMethod§params: SkipWaitingParamsImplementations§
Source§impl SkipWaiting
impl SkipWaiting
pub fn builder() -> SkipWaitingBuilder
Source§impl SkipWaiting
impl SkipWaiting
pub const IDENTIFIER: &'static str = "ServiceWorker.skipWaiting"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SkipWaiting
impl Clone for SkipWaiting
Source§fn clone(&self) -> SkipWaiting
fn clone(&self) -> SkipWaiting
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 SkipWaiting
impl CommandResult for SkipWaiting
type Result = SkipWaitingResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SkipWaiting
impl Debug for SkipWaiting
Source§impl<'de> Deserialize<'de> for SkipWaiting
impl<'de> Deserialize<'de> for SkipWaiting
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<SkipWaiting> for BrowserProtocolCommands
impl From<SkipWaiting> for BrowserProtocolCommands
Source§fn from(v: SkipWaiting) -> Self
fn from(v: SkipWaiting) -> Self
Converts to this type from the input type.
Source§impl From<SkipWaiting> for Command
impl From<SkipWaiting> for Command
Source§fn from(v: SkipWaiting) -> Self
fn from(v: SkipWaiting) -> Self
Converts to this type from the input type.
Source§impl From<SkipWaiting> for ServiceWorkerCommands
impl From<SkipWaiting> for ServiceWorkerCommands
Source§fn from(v: SkipWaiting) -> Self
fn from(v: SkipWaiting) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SkipWaiting
impl PartialEq for SkipWaiting
Source§impl Serialize for SkipWaiting
impl Serialize for SkipWaiting
Source§impl TryFrom<BrowserProtocolCommands> for SkipWaiting
impl TryFrom<BrowserProtocolCommands> for SkipWaiting
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, <SkipWaiting as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SkipWaiting as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SkipWaiting
impl TryFrom<Command> for SkipWaiting
Source§impl TryFrom<ServiceWorkerCommands> for SkipWaiting
impl TryFrom<ServiceWorkerCommands> for SkipWaiting
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, <SkipWaiting as TryFrom<ServiceWorkerCommands>>::Error>
fn try_from( e: ServiceWorkerCommands, ) -> Result<Self, <SkipWaiting as TryFrom<ServiceWorkerCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SkipWaiting
Auto Trait Implementations§
impl Freeze for SkipWaiting
impl RefUnwindSafe for SkipWaiting
impl Send for SkipWaiting
impl Sync for SkipWaiting
impl Unpin for SkipWaiting
impl UnsafeUnpin for SkipWaiting
impl UnwindSafe for SkipWaiting
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