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