pub struct LoadingFailedEventParams {
pub request_id: RequestId,
pub timestamp: MonotonicTime,
pub type: ResourceType,
pub error_text: String,
pub canceled: Option<bool>,
pub blocked_reason: Option<BlockedReason>,
pub cors_error_status: Option<CorsErrorStatus>,
}Fields§
§request_id: RequestId§timestamp: MonotonicTime§type: ResourceType§error_text: String§canceled: Option<bool>§blocked_reason: Option<BlockedReason>§cors_error_status: Option<CorsErrorStatus>Trait Implementations§
Source§impl Clone for LoadingFailedEventParams
impl Clone for LoadingFailedEventParams
Source§fn clone(&self) -> LoadingFailedEventParams
fn clone(&self) -> LoadingFailedEventParams
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 LoadingFailedEventParams
impl Debug for LoadingFailedEventParams
Source§impl<'de> Deserialize<'de> for LoadingFailedEventParams
impl<'de> Deserialize<'de> for LoadingFailedEventParams
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 PartialEq for LoadingFailedEventParams
impl PartialEq for LoadingFailedEventParams
Source§impl Serialize for LoadingFailedEventParams
impl Serialize for LoadingFailedEventParams
impl StructuralPartialEq for LoadingFailedEventParams
Auto Trait Implementations§
impl Freeze for LoadingFailedEventParams
impl RefUnwindSafe for LoadingFailedEventParams
impl Send for LoadingFailedEventParams
impl Sync for LoadingFailedEventParams
impl Unpin for LoadingFailedEventParams
impl UnwindSafe for LoadingFailedEventParams
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