pub struct PrefetchStatusUpdatedParams {
pub key: PreloadingAttemptKey,
pub pipeline_id: PreloadPipelineId,
pub initiating_frame_id: FrameId,
pub prefetch_url: String,
pub status: PreloadingStatus,
pub prefetch_status: PrefetchStatus,
pub request_id: RequestId,
}Expand description
Fired when a prefetch attempt is updated. prefetchStatusUpdated
Fields§
§key: PreloadingAttemptKey§pipeline_id: PreloadPipelineId§initiating_frame_id: FrameIdThe frame id of the frame initiating prefetch.
prefetch_url: String§status: PreloadingStatus§prefetch_status: PrefetchStatus§request_id: RequestIdTrait Implementations§
Source§impl Clone for PrefetchStatusUpdatedParams
impl Clone for PrefetchStatusUpdatedParams
Source§fn clone(&self) -> PrefetchStatusUpdatedParams
fn clone(&self) -> PrefetchStatusUpdatedParams
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 PrefetchStatusUpdatedParams
impl Debug for PrefetchStatusUpdatedParams
Source§impl<'de> Deserialize<'de> for PrefetchStatusUpdatedParams
impl<'de> Deserialize<'de> for PrefetchStatusUpdatedParams
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
impl StructuralPartialEq for PrefetchStatusUpdatedParams
Auto Trait Implementations§
impl Freeze for PrefetchStatusUpdatedParams
impl RefUnwindSafe for PrefetchStatusUpdatedParams
impl Send for PrefetchStatusUpdatedParams
impl Sync for PrefetchStatusUpdatedParams
impl Unpin for PrefetchStatusUpdatedParams
impl UnsafeUnpin for PrefetchStatusUpdatedParams
impl UnwindSafe for PrefetchStatusUpdatedParams
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