pub struct WorkerVersionUpdated {
pub method: WorkerVersionUpdatedMethod,
pub params: WorkerVersionUpdatedParams,
}Fields§
§method: WorkerVersionUpdatedMethod§params: WorkerVersionUpdatedParamsImplementations§
Source§impl WorkerVersionUpdated
impl WorkerVersionUpdated
pub const IDENTIFIER: &'static str = "ServiceWorker.workerVersionUpdated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for WorkerVersionUpdated
impl Clone for WorkerVersionUpdated
Source§fn clone(&self) -> WorkerVersionUpdated
fn clone(&self) -> WorkerVersionUpdated
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 WorkerVersionUpdated
impl Debug for WorkerVersionUpdated
Source§impl<'de> Deserialize<'de> for WorkerVersionUpdated
impl<'de> Deserialize<'de> for WorkerVersionUpdated
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<WorkerVersionUpdated> for BrowserProtocolEvents
impl From<WorkerVersionUpdated> for BrowserProtocolEvents
Source§fn from(v: WorkerVersionUpdated) -> Self
fn from(v: WorkerVersionUpdated) -> Self
Converts to this type from the input type.
Source§impl From<WorkerVersionUpdated> for Event
impl From<WorkerVersionUpdated> for Event
Source§fn from(v: WorkerVersionUpdated) -> Self
fn from(v: WorkerVersionUpdated) -> Self
Converts to this type from the input type.
Source§impl From<WorkerVersionUpdated> for ServiceWorkerEvents
impl From<WorkerVersionUpdated> for ServiceWorkerEvents
Source§fn from(v: WorkerVersionUpdated) -> Self
fn from(v: WorkerVersionUpdated) -> Self
Converts to this type from the input type.
Source§impl PartialEq for WorkerVersionUpdated
impl PartialEq for WorkerVersionUpdated
Source§impl Serialize for WorkerVersionUpdated
impl Serialize for WorkerVersionUpdated
Source§impl TryFrom<BrowserProtocolEvents> for WorkerVersionUpdated
impl TryFrom<BrowserProtocolEvents> for WorkerVersionUpdated
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <WorkerVersionUpdated as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <WorkerVersionUpdated as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for WorkerVersionUpdated
impl TryFrom<Event> for WorkerVersionUpdated
Source§impl TryFrom<ServiceWorkerEvents> for WorkerVersionUpdated
impl TryFrom<ServiceWorkerEvents> for WorkerVersionUpdated
Source§type Error = ServiceWorkerEvents
type Error = ServiceWorkerEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: ServiceWorkerEvents,
) -> Result<Self, <WorkerVersionUpdated as TryFrom<ServiceWorkerEvents>>::Error>
fn try_from( e: ServiceWorkerEvents, ) -> Result<Self, <WorkerVersionUpdated as TryFrom<ServiceWorkerEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for WorkerVersionUpdated
Auto Trait Implementations§
impl Freeze for WorkerVersionUpdated
impl RefUnwindSafe for WorkerVersionUpdated
impl Send for WorkerVersionUpdated
impl Sync for WorkerVersionUpdated
impl Unpin for WorkerVersionUpdated
impl UnsafeUnpin for WorkerVersionUpdated
impl UnwindSafe for WorkerVersionUpdated
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