pub struct LoadingFailedEvent {
pub request_id: RequestId,
pub timestamp: f64,
pub resource_type: String,
pub error_text: String,
pub canceled: Option<bool>,
pub blocked_reason: Option<String>,
}Expand description
Event: Network.loadingFailed
Fields§
§request_id: RequestIdRequest identifier.
timestamp: f64Timestamp.
resource_type: StringResource type.
error_text: StringUser friendly error message.
canceled: Option<bool>True if loading was canceled.
blocked_reason: Option<String>The reason why loading was blocked.
Trait Implementations§
Source§impl Clone for LoadingFailedEvent
impl Clone for LoadingFailedEvent
Source§fn clone(&self) -> LoadingFailedEvent
fn clone(&self) -> LoadingFailedEvent
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 LoadingFailedEvent
impl Debug for LoadingFailedEvent
Source§impl<'de> Deserialize<'de> for LoadingFailedEvent
impl<'de> Deserialize<'de> for LoadingFailedEvent
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
Auto Trait Implementations§
impl Freeze for LoadingFailedEvent
impl RefUnwindSafe for LoadingFailedEvent
impl Send for LoadingFailedEvent
impl Sync for LoadingFailedEvent
impl Unpin for LoadingFailedEvent
impl UnwindSafe for LoadingFailedEvent
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