Struct chromiumoxide::cdp::browser_protocol::service_worker::EventWorkerRegistrationUpdated
source · [−]pub struct EventWorkerRegistrationUpdated {
pub registrations: Vec<ServiceWorkerRegistration, Global>,
}
Fields
registrations: Vec<ServiceWorkerRegistration, Global>
Implementations
sourceimpl EventWorkerRegistrationUpdated
impl EventWorkerRegistrationUpdated
pub const IDENTIFIER: &'static str = "ServiceWorker.workerRegistrationUpdated"
Trait Implementations
sourceimpl Clone for EventWorkerRegistrationUpdated
impl Clone for EventWorkerRegistrationUpdated
sourcefn clone(&self) -> EventWorkerRegistrationUpdated
fn clone(&self) -> EventWorkerRegistrationUpdated
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl<'de> Deserialize<'de> for EventWorkerRegistrationUpdated
impl<'de> Deserialize<'de> for EventWorkerRegistrationUpdated
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<EventWorkerRegistrationUpdated, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<EventWorkerRegistrationUpdated, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<EventWorkerRegistrationUpdated> for CdpEvent
impl From<EventWorkerRegistrationUpdated> for CdpEvent
sourcefn from(el: EventWorkerRegistrationUpdated) -> CdpEvent
fn from(el: EventWorkerRegistrationUpdated) -> CdpEvent
Converts to this type from the input type.
sourceimpl IntoEventKind for EventWorkerRegistrationUpdated
impl IntoEventKind for EventWorkerRegistrationUpdated
sourcefn event_kind() -> EventKindwhere
EventWorkerRegistrationUpdated: 'static + Sized,
fn event_kind() -> EventKindwhere
EventWorkerRegistrationUpdated: 'static + Sized,
What kind of event this type is
sourceimpl Method for EventWorkerRegistrationUpdated
impl Method for EventWorkerRegistrationUpdated
sourcefn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNode
sourcefn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOM
sourcefn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNode
sourceimpl PartialEq<EventWorkerRegistrationUpdated> for EventWorkerRegistrationUpdated
impl PartialEq<EventWorkerRegistrationUpdated> for EventWorkerRegistrationUpdated
sourcefn eq(&self, other: &EventWorkerRegistrationUpdated) -> bool
fn eq(&self, other: &EventWorkerRegistrationUpdated) -> bool
sourceimpl Serialize for EventWorkerRegistrationUpdated
impl Serialize for EventWorkerRegistrationUpdated
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for EventWorkerRegistrationUpdated
Auto Trait Implementations
impl RefUnwindSafe for EventWorkerRegistrationUpdated
impl Send for EventWorkerRegistrationUpdated
impl Sync for EventWorkerRegistrationUpdated
impl Unpin for EventWorkerRegistrationUpdated
impl UnwindSafe for EventWorkerRegistrationUpdated
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more