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