pub struct FrameAttached {
pub method: FrameAttachedMethod,
pub params: FrameAttachedParams,
}Expand description
Fired when frame has been attached to its parent. frameAttached
Fields§
§method: FrameAttachedMethod§params: FrameAttachedParamsImplementations§
Source§impl FrameAttached
impl FrameAttached
pub const IDENTIFIER: &'static str = "Page.frameAttached"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for FrameAttached
impl Clone for FrameAttached
Source§fn clone(&self) -> FrameAttached
fn clone(&self) -> FrameAttached
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 FrameAttached
impl Debug for FrameAttached
Source§impl<'de> Deserialize<'de> for FrameAttached
impl<'de> Deserialize<'de> for FrameAttached
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 From<FrameAttached> for BrowserProtocolEvents
impl From<FrameAttached> for BrowserProtocolEvents
Source§fn from(v: FrameAttached) -> Self
fn from(v: FrameAttached) -> Self
Converts to this type from the input type.
Source§impl From<FrameAttached> for Event
impl From<FrameAttached> for Event
Source§fn from(v: FrameAttached) -> Self
fn from(v: FrameAttached) -> Self
Converts to this type from the input type.
Source§impl From<FrameAttached> for PageEvents
impl From<FrameAttached> for PageEvents
Source§fn from(v: FrameAttached) -> Self
fn from(v: FrameAttached) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FrameAttached
impl PartialEq for FrameAttached
Source§impl Serialize for FrameAttached
impl Serialize for FrameAttached
Source§impl TryFrom<BrowserProtocolEvents> for FrameAttached
impl TryFrom<BrowserProtocolEvents> for FrameAttached
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <FrameAttached as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <FrameAttached as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for FrameAttached
impl TryFrom<Event> for FrameAttached
Source§impl TryFrom<PageEvents> for FrameAttached
impl TryFrom<PageEvents> for FrameAttached
Source§type Error = PageEvents
type Error = PageEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: PageEvents,
) -> Result<Self, <FrameAttached as TryFrom<PageEvents>>::Error>
fn try_from( e: PageEvents, ) -> Result<Self, <FrameAttached as TryFrom<PageEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for FrameAttached
Auto Trait Implementations§
impl Freeze for FrameAttached
impl RefUnwindSafe for FrameAttached
impl Send for FrameAttached
impl Sync for FrameAttached
impl Unpin for FrameAttached
impl UnsafeUnpin for FrameAttached
impl UnwindSafe for FrameAttached
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