pub struct LoadingFailed {
pub method: LoadingFailedMethod,
pub params: LoadingFailedParams,
}Expand description
Fired when HTTP request has failed to load. loadingFailed
Fields§
§method: LoadingFailedMethod§params: LoadingFailedParamsImplementations§
Source§impl LoadingFailed
impl LoadingFailed
pub const IDENTIFIER: &'static str = "Network.loadingFailed"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for LoadingFailed
impl Clone for LoadingFailed
Source§fn clone(&self) -> LoadingFailed
fn clone(&self) -> LoadingFailed
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 LoadingFailed
impl Debug for LoadingFailed
Source§impl<'de> Deserialize<'de> for LoadingFailed
impl<'de> Deserialize<'de> for LoadingFailed
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<LoadingFailed> for BrowserProtocolEvents
impl From<LoadingFailed> for BrowserProtocolEvents
Source§fn from(v: LoadingFailed) -> Self
fn from(v: LoadingFailed) -> Self
Converts to this type from the input type.
Source§impl From<LoadingFailed> for Event
impl From<LoadingFailed> for Event
Source§fn from(v: LoadingFailed) -> Self
fn from(v: LoadingFailed) -> Self
Converts to this type from the input type.
Source§impl From<LoadingFailed> for NetworkEvents
impl From<LoadingFailed> for NetworkEvents
Source§fn from(v: LoadingFailed) -> Self
fn from(v: LoadingFailed) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LoadingFailed
impl PartialEq for LoadingFailed
Source§impl Serialize for LoadingFailed
impl Serialize for LoadingFailed
Source§impl TryFrom<BrowserProtocolEvents> for LoadingFailed
impl TryFrom<BrowserProtocolEvents> for LoadingFailed
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, <LoadingFailed as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <LoadingFailed as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for LoadingFailed
impl TryFrom<Event> for LoadingFailed
Source§impl TryFrom<NetworkEvents> for LoadingFailed
impl TryFrom<NetworkEvents> for LoadingFailed
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, <LoadingFailed as TryFrom<NetworkEvents>>::Error>
fn try_from( e: NetworkEvents, ) -> Result<Self, <LoadingFailed as TryFrom<NetworkEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for LoadingFailed
Auto Trait Implementations§
impl Freeze for LoadingFailed
impl RefUnwindSafe for LoadingFailed
impl Send for LoadingFailed
impl Sync for LoadingFailed
impl Unpin for LoadingFailed
impl UnsafeUnpin for LoadingFailed
impl UnwindSafe for LoadingFailed
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