pub struct EventRequestWillBeSentExtraInfo {
pub request_id: RequestId,
pub associated_cookies: Vec<AssociatedCookie>,
pub headers: Headers,
pub connect_timing: ConnectTiming,
pub client_security_state: Option<ClientSecurityState>,
pub site_has_cookie_in_other_partition: Option<bool>,
}
Expand description
Fired when additional information about a requestWillBeSent event is available from the network stack. Not every requestWillBeSent event will have an additional requestWillBeSentExtraInfo fired for it, and there is no guarantee whether requestWillBeSent or requestWillBeSentExtraInfo will be fired first for the same request. requestWillBeSentExtraInfo
Fields§
§request_id: RequestId
Request identifier. Used to match this information to an existing requestWillBeSent event.
A list of cookies potentially associated to the requested URL. This includes both cookies sent with the request and the ones not sent; the latter are distinguished by having blockedReasons field set.
headers: Headers
Raw request headers as they will be sent over the wire.
connect_timing: ConnectTiming
Connection timing information for the request.
client_security_state: Option<ClientSecurityState>
The client security state set for the request.
Whether the site has partitioned cookies stored in a partition different than the current one.
Implementations§
Source§impl EventRequestWillBeSentExtraInfo
impl EventRequestWillBeSentExtraInfo
pub const IDENTIFIER: &'static str = "Network.requestWillBeSentExtraInfo"
Trait Implementations§
Source§impl Clone for EventRequestWillBeSentExtraInfo
impl Clone for EventRequestWillBeSentExtraInfo
Source§fn clone(&self) -> EventRequestWillBeSentExtraInfo
fn clone(&self) -> EventRequestWillBeSentExtraInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<'de> Deserialize<'de> for EventRequestWillBeSentExtraInfo
impl<'de> Deserialize<'de> for EventRequestWillBeSentExtraInfo
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EventRequestWillBeSentExtraInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EventRequestWillBeSentExtraInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl From<EventRequestWillBeSentExtraInfo> for CdpEvent
impl From<EventRequestWillBeSentExtraInfo> for CdpEvent
Source§fn from(el: EventRequestWillBeSentExtraInfo) -> CdpEvent
fn from(el: EventRequestWillBeSentExtraInfo) -> CdpEvent
Source§impl IntoEventKind for EventRequestWillBeSentExtraInfo
impl IntoEventKind for EventRequestWillBeSentExtraInfo
Source§fn event_kind() -> EventKindwhere
EventRequestWillBeSentExtraInfo: Sized + 'static,
fn event_kind() -> EventKindwhere
EventRequestWillBeSentExtraInfo: Sized + 'static,
Source§impl Method for EventRequestWillBeSentExtraInfo
impl Method for EventRequestWillBeSentExtraInfo
Source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
DOM.removeNode
Source§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
DOM
Source§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
removeNode
Source§impl PartialEq for EventRequestWillBeSentExtraInfo
impl PartialEq for EventRequestWillBeSentExtraInfo
Source§fn eq(&self, other: &EventRequestWillBeSentExtraInfo) -> bool
fn eq(&self, other: &EventRequestWillBeSentExtraInfo) -> bool
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for EventRequestWillBeSentExtraInfo
impl Serialize for EventRequestWillBeSentExtraInfo
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
impl StructuralPartialEq for EventRequestWillBeSentExtraInfo
Auto Trait Implementations§
impl Freeze for EventRequestWillBeSentExtraInfo
impl RefUnwindSafe for EventRequestWillBeSentExtraInfo
impl Send for EventRequestWillBeSentExtraInfo
impl Sync for EventRequestWillBeSentExtraInfo
impl Unpin for EventRequestWillBeSentExtraInfo
impl UnwindSafe for EventRequestWillBeSentExtraInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more