pub struct SharedStorageWorkletOperationExecutionFinishedParams {
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.
Trait Implementations§
Source§fn clone(&self) -> SharedStorageWorkletOperationExecutionFinishedParams
fn clone(&self) -> SharedStorageWorkletOperationExecutionFinishedParams
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<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§fn eq(
&self,
other: &SharedStorageWorkletOperationExecutionFinishedParams,
) -> bool
fn eq( &self, other: &SharedStorageWorkletOperationExecutionFinishedParams, ) -> bool
Tests for
self and other values to be equal, and is used by ==.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