pub struct LifecycleEventParams {
pub frame_id: Box<FrameId>,
pub loader_id: LoaderId,
pub name: String,
pub timestamp: MonotonicTime,
}Expand description
Fired for lifecycle events (navigation, load, paint, etc) in the current target (including local frames). lifecycleEvent
Fields§
§frame_id: Box<FrameId>Id of the frame.
loader_id: LoaderIdLoader identifier. Empty string if the request is fetched from worker.
name: String§timestamp: MonotonicTimeTrait Implementations§
Source§impl Clone for LifecycleEventParams
impl Clone for LifecycleEventParams
Source§fn clone(&self) -> LifecycleEventParams
fn clone(&self) -> LifecycleEventParams
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 LifecycleEventParams
impl Debug for LifecycleEventParams
Source§impl<'de> Deserialize<'de> for LifecycleEventParams
impl<'de> Deserialize<'de> for LifecycleEventParams
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 PartialEq for LifecycleEventParams
impl PartialEq for LifecycleEventParams
Source§impl Serialize for LifecycleEventParams
impl Serialize for LifecycleEventParams
impl StructuralPartialEq for LifecycleEventParams
Auto Trait Implementations§
impl Freeze for LifecycleEventParams
impl RefUnwindSafe for LifecycleEventParams
impl Send for LifecycleEventParams
impl Sync for LifecycleEventParams
impl Unpin for LifecycleEventParams
impl UnsafeUnpin for LifecycleEventParams
impl UnwindSafe for LifecycleEventParams
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