pub struct LoadingFinished {
pub method: LoadingFinishedMethod,
pub params: LoadingFinishedParams,
}Expand description
Fired when HTTP request has finished loading. loadingFinished
Fields§
§method: LoadingFinishedMethod§params: LoadingFinishedParamsImplementations§
Source§impl LoadingFinished
impl LoadingFinished
pub const IDENTIFIER: &'static str = "Network.loadingFinished"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for LoadingFinished
impl Clone for LoadingFinished
Source§fn clone(&self) -> LoadingFinished
fn clone(&self) -> LoadingFinished
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 LoadingFinished
impl Debug for LoadingFinished
Source§impl<'de> Deserialize<'de> for LoadingFinished
impl<'de> Deserialize<'de> for LoadingFinished
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<LoadingFinished> for BrowserProtocolEvents
impl From<LoadingFinished> for BrowserProtocolEvents
Source§fn from(v: LoadingFinished) -> Self
fn from(v: LoadingFinished) -> Self
Converts to this type from the input type.
Source§impl From<LoadingFinished> for Event
impl From<LoadingFinished> for Event
Source§fn from(v: LoadingFinished) -> Self
fn from(v: LoadingFinished) -> Self
Converts to this type from the input type.
Source§impl From<LoadingFinished> for NetworkEvents
impl From<LoadingFinished> for NetworkEvents
Source§fn from(v: LoadingFinished) -> Self
fn from(v: LoadingFinished) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LoadingFinished
impl PartialEq for LoadingFinished
Source§impl Serialize for LoadingFinished
impl Serialize for LoadingFinished
Source§impl TryFrom<BrowserProtocolEvents> for LoadingFinished
impl TryFrom<BrowserProtocolEvents> for LoadingFinished
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, <LoadingFinished as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <LoadingFinished as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for LoadingFinished
impl TryFrom<Event> for LoadingFinished
Source§impl TryFrom<NetworkEvents> for LoadingFinished
impl TryFrom<NetworkEvents> for LoadingFinished
Source§type Error = NetworkEvents
type Error = NetworkEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: NetworkEvents,
) -> Result<Self, <LoadingFinished as TryFrom<NetworkEvents>>::Error>
fn try_from( e: NetworkEvents, ) -> Result<Self, <LoadingFinished as TryFrom<NetworkEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for LoadingFinished
Auto Trait Implementations§
impl Freeze for LoadingFinished
impl RefUnwindSafe for LoadingFinished
impl Send for LoadingFinished
impl Sync for LoadingFinished
impl Unpin for LoadingFinished
impl UnsafeUnpin for LoadingFinished
impl UnwindSafe for LoadingFinished
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