pub struct ResponseReceivedExtraInfoEventParams {
pub request_id: RequestId,
pub blocked_cookies: Vec<BlockedSetCookieWithReason>,
pub headers: Headers,
pub resource_ip_address_space: IpAddressSpace,
pub status_code: JsUInt,
pub headers_text: Option<String>,
pub cookie_partition_key: Option<CookiePartitionKey>,
pub cookie_partition_key_opaque: Option<bool>,
pub exempted_cookies: Option<Vec<ExemptedSetCookieWithReason>>,
}Fields§
§request_id: RequestId§headers: Headers§resource_ip_address_space: IpAddressSpace§status_code: JsUInt§headers_text: Option<String>Trait Implementations§
Source§impl Clone for ResponseReceivedExtraInfoEventParams
impl Clone for ResponseReceivedExtraInfoEventParams
Source§fn clone(&self) -> ResponseReceivedExtraInfoEventParams
fn clone(&self) -> ResponseReceivedExtraInfoEventParams
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<'de> Deserialize<'de> for ResponseReceivedExtraInfoEventParams
impl<'de> Deserialize<'de> for ResponseReceivedExtraInfoEventParams
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 ResponseReceivedExtraInfoEventParams
impl PartialEq for ResponseReceivedExtraInfoEventParams
Source§fn eq(&self, other: &ResponseReceivedExtraInfoEventParams) -> bool
fn eq(&self, other: &ResponseReceivedExtraInfoEventParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResponseReceivedExtraInfoEventParams
Auto Trait Implementations§
impl Freeze for ResponseReceivedExtraInfoEventParams
impl RefUnwindSafe for ResponseReceivedExtraInfoEventParams
impl Send for ResponseReceivedExtraInfoEventParams
impl Sync for ResponseReceivedExtraInfoEventParams
impl Unpin for ResponseReceivedExtraInfoEventParams
impl UnwindSafe for ResponseReceivedExtraInfoEventParams
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