pub struct FrameSubtreeWillBeDetached {
pub method: FrameSubtreeWillBeDetachedMethod,
pub params: FrameSubtreeWillBeDetachedParams,
}Expand description
Fired before frame subtree is detached. Emitted before any frame of the subtree is actually detached. frameSubtreeWillBeDetached
Fields§
§method: FrameSubtreeWillBeDetachedMethod§params: FrameSubtreeWillBeDetachedParamsImplementations§
Source§impl FrameSubtreeWillBeDetached
impl FrameSubtreeWillBeDetached
pub const IDENTIFIER: &'static str = "Page.frameSubtreeWillBeDetached"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for FrameSubtreeWillBeDetached
impl Clone for FrameSubtreeWillBeDetached
Source§fn clone(&self) -> FrameSubtreeWillBeDetached
fn clone(&self) -> FrameSubtreeWillBeDetached
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 FrameSubtreeWillBeDetached
impl Debug for FrameSubtreeWillBeDetached
Source§impl<'de> Deserialize<'de> for FrameSubtreeWillBeDetached
impl<'de> Deserialize<'de> for FrameSubtreeWillBeDetached
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<FrameSubtreeWillBeDetached> for BrowserProtocolEvents
impl From<FrameSubtreeWillBeDetached> for BrowserProtocolEvents
Source§fn from(v: FrameSubtreeWillBeDetached) -> Self
fn from(v: FrameSubtreeWillBeDetached) -> Self
Converts to this type from the input type.
Source§impl From<FrameSubtreeWillBeDetached> for Event
impl From<FrameSubtreeWillBeDetached> for Event
Source§fn from(v: FrameSubtreeWillBeDetached) -> Self
fn from(v: FrameSubtreeWillBeDetached) -> Self
Converts to this type from the input type.
Source§impl From<FrameSubtreeWillBeDetached> for PageEvents
impl From<FrameSubtreeWillBeDetached> for PageEvents
Source§fn from(v: FrameSubtreeWillBeDetached) -> Self
fn from(v: FrameSubtreeWillBeDetached) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BrowserProtocolEvents> for FrameSubtreeWillBeDetached
impl TryFrom<BrowserProtocolEvents> for FrameSubtreeWillBeDetached
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, <FrameSubtreeWillBeDetached as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <FrameSubtreeWillBeDetached as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for FrameSubtreeWillBeDetached
impl TryFrom<Event> for FrameSubtreeWillBeDetached
Source§impl TryFrom<PageEvents> for FrameSubtreeWillBeDetached
impl TryFrom<PageEvents> for FrameSubtreeWillBeDetached
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, <FrameSubtreeWillBeDetached as TryFrom<PageEvents>>::Error>
fn try_from( e: PageEvents, ) -> Result<Self, <FrameSubtreeWillBeDetached as TryFrom<PageEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for FrameSubtreeWillBeDetached
Auto Trait Implementations§
impl Freeze for FrameSubtreeWillBeDetached
impl RefUnwindSafe for FrameSubtreeWillBeDetached
impl Send for FrameSubtreeWillBeDetached
impl Sync for FrameSubtreeWillBeDetached
impl Unpin for FrameSubtreeWillBeDetached
impl UnsafeUnpin for FrameSubtreeWillBeDetached
impl UnwindSafe for FrameSubtreeWillBeDetached
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