pub struct WorkerRegistrationUpdated {
pub method: WorkerRegistrationUpdatedMethod,
pub params: WorkerRegistrationUpdatedParams,
}Fields§
§method: WorkerRegistrationUpdatedMethod§params: WorkerRegistrationUpdatedParamsImplementations§
Source§impl WorkerRegistrationUpdated
impl WorkerRegistrationUpdated
pub const IDENTIFIER: &'static str = "ServiceWorker.workerRegistrationUpdated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for WorkerRegistrationUpdated
impl Clone for WorkerRegistrationUpdated
Source§fn clone(&self) -> WorkerRegistrationUpdated
fn clone(&self) -> WorkerRegistrationUpdated
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 WorkerRegistrationUpdated
impl Debug for WorkerRegistrationUpdated
Source§impl<'de> Deserialize<'de> for WorkerRegistrationUpdated
impl<'de> Deserialize<'de> for WorkerRegistrationUpdated
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<WorkerRegistrationUpdated> for BrowserProtocolEvents
impl From<WorkerRegistrationUpdated> for BrowserProtocolEvents
Source§fn from(v: WorkerRegistrationUpdated) -> Self
fn from(v: WorkerRegistrationUpdated) -> Self
Converts to this type from the input type.
Source§impl From<WorkerRegistrationUpdated> for Event
impl From<WorkerRegistrationUpdated> for Event
Source§fn from(v: WorkerRegistrationUpdated) -> Self
fn from(v: WorkerRegistrationUpdated) -> Self
Converts to this type from the input type.
Source§impl From<WorkerRegistrationUpdated> for ServiceWorkerEvents
impl From<WorkerRegistrationUpdated> for ServiceWorkerEvents
Source§fn from(v: WorkerRegistrationUpdated) -> Self
fn from(v: WorkerRegistrationUpdated) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BrowserProtocolEvents> for WorkerRegistrationUpdated
impl TryFrom<BrowserProtocolEvents> for WorkerRegistrationUpdated
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, <WorkerRegistrationUpdated as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <WorkerRegistrationUpdated as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for WorkerRegistrationUpdated
impl TryFrom<Event> for WorkerRegistrationUpdated
Source§impl TryFrom<ServiceWorkerEvents> for WorkerRegistrationUpdated
impl TryFrom<ServiceWorkerEvents> for WorkerRegistrationUpdated
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, <WorkerRegistrationUpdated as TryFrom<ServiceWorkerEvents>>::Error>
fn try_from( e: ServiceWorkerEvents, ) -> Result<Self, <WorkerRegistrationUpdated as TryFrom<ServiceWorkerEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for WorkerRegistrationUpdated
Auto Trait Implementations§
impl Freeze for WorkerRegistrationUpdated
impl RefUnwindSafe for WorkerRegistrationUpdated
impl Send for WorkerRegistrationUpdated
impl Sync for WorkerRegistrationUpdated
impl Unpin for WorkerRegistrationUpdated
impl UnsafeUnpin for WorkerRegistrationUpdated
impl UnwindSafe for WorkerRegistrationUpdated
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