pub struct ResponseReceivedEvent {
pub request_id: RequestId,
pub loader_id: LoaderId,
pub timestamp: f64,
pub resource_type: String,
pub response: Response,
pub frame_id: Option<FrameId>,
}Expand description
Event: Network.responseReceived
Fields§
§request_id: RequestIdRequest identifier.
loader_id: LoaderIdLoader identifier.
timestamp: f64Timestamp.
resource_type: StringResource type.
response: ResponseResponse data.
frame_id: Option<FrameId>Frame identifier.
Trait Implementations§
Source§impl Clone for ResponseReceivedEvent
impl Clone for ResponseReceivedEvent
Source§fn clone(&self) -> ResponseReceivedEvent
fn clone(&self) -> ResponseReceivedEvent
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 ResponseReceivedEvent
impl Debug for ResponseReceivedEvent
Source§impl<'de> Deserialize<'de> for ResponseReceivedEvent
impl<'de> Deserialize<'de> for ResponseReceivedEvent
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 ResponseReceivedEvent
impl RefUnwindSafe for ResponseReceivedEvent
impl Send for ResponseReceivedEvent
impl Sync for ResponseReceivedEvent
impl Unpin for ResponseReceivedEvent
impl UnwindSafe for ResponseReceivedEvent
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