pub struct FrameAttachedParams {
pub frame_id: Box<FrameId>,
pub parent_frame_id: FrameId,
pub stack: Option<StackTrace>,
}Expand description
Fired when frame has been attached to its parent. frameAttached
Fields§
§frame_id: Box<FrameId>Id of the frame that has been attached.
parent_frame_id: FrameIdParent frame identifier.
stack: Option<StackTrace>JavaScript stack trace of when frame was attached, only set if frame initiated from script.
Trait Implementations§
Source§impl Clone for FrameAttachedParams
impl Clone for FrameAttachedParams
Source§fn clone(&self) -> FrameAttachedParams
fn clone(&self) -> FrameAttachedParams
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 FrameAttachedParams
impl Debug for FrameAttachedParams
Source§impl<'de> Deserialize<'de> for FrameAttachedParams
impl<'de> Deserialize<'de> for FrameAttachedParams
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 FrameAttachedParams
impl PartialEq for FrameAttachedParams
Source§impl Serialize for FrameAttachedParams
impl Serialize for FrameAttachedParams
impl StructuralPartialEq for FrameAttachedParams
Auto Trait Implementations§
impl Freeze for FrameAttachedParams
impl RefUnwindSafe for FrameAttachedParams
impl Send for FrameAttachedParams
impl Sync for FrameAttachedParams
impl Unpin for FrameAttachedParams
impl UnsafeUnpin for FrameAttachedParams
impl UnwindSafe for FrameAttachedParams
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