pub struct EventSharedStorageWorkletOperationExecutionFinished {
pub finished_time: TimeSinceEpoch,
pub execution_time: i64,
pub method: SharedStorageAccessMethod,
pub operation_id: String,
pub worklet_target_id: TargetId,
pub main_frame_id: FrameId,
pub owner_origin: String,
}Expand description
A shared storage run or selectURL operation finished its execution. The following parameters are included in all events. sharedStorageWorkletOperationExecutionFinished
Fields§
§finished_time: TimeSinceEpochTime that the operation finished.
execution_time: i64Time, in microseconds, from start of shared storage JS API call until end of operation execution in the worklet.
method: SharedStorageAccessMethodEnum value indicating the Shared Storage API method invoked.
operation_id: StringID of the operation call.
worklet_target_id: TargetIdHex representation of the DevTools token used as the TargetID for the associated shared storage worklet.
main_frame_id: FrameIdDevTools Frame Token for the primary frame tree’s root.
owner_origin: StringSerialization of the origin owning the Shared Storage data.
Implementations§
pub const IDENTIFIER: &'static str = "Storage.sharedStorageWorkletOperationExecutionFinished"
Trait Implementations§
Source§fn clone(&self) -> EventSharedStorageWorkletOperationExecutionFinished
fn clone(&self) -> EventSharedStorageWorkletOperationExecutionFinished
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§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EventSharedStorageWorkletOperationExecutionFinished, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EventSharedStorageWorkletOperationExecutionFinished, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§fn from(el: EventSharedStorageWorkletOperationExecutionFinished) -> CdpEvent
fn from(el: EventSharedStorageWorkletOperationExecutionFinished) -> CdpEvent
Converts to this type from the input type.
Source§fn event_kind() -> EventKindwhere
EventSharedStorageWorkletOperationExecutionFinished: Sized + 'static,
fn event_kind() -> EventKindwhere
EventSharedStorageWorkletOperationExecutionFinished: Sized + 'static,
What kind of event this type is
Source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§fn eq(
&self,
other: &EventSharedStorageWorkletOperationExecutionFinished,
) -> bool
fn eq( &self, other: &EventSharedStorageWorkletOperationExecutionFinished, ) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§fn 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
Auto Trait Implementations§
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