pub struct RequestWillBeSentExtraInfoEvent { /* private fields */ }Available on crate features
Network and Debugger and Runtime and Security and experimental only.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.
Implementations§
Source§impl RequestWillBeSentExtraInfoEvent
impl RequestWillBeSentExtraInfoEvent
pub fn builder() -> RequestWillBeSentExtraInfoEventBuilder
Sourcepub fn request_id(&self) -> &RequestId
pub fn request_id(&self) -> &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 blockedReason field set.
Sourcepub fn client_security_state(&self) -> Option<&JsonValue>
pub fn client_security_state(&self) -> Option<&JsonValue>
The client security state set for the request.
Trait Implementations§
Source§impl Clone for RequestWillBeSentExtraInfoEvent
impl Clone for RequestWillBeSentExtraInfoEvent
Source§fn clone(&self) -> RequestWillBeSentExtraInfoEvent
fn clone(&self) -> RequestWillBeSentExtraInfoEvent
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 RequestWillBeSentExtraInfoEvent
impl<'de> Deserialize<'de> for RequestWillBeSentExtraInfoEvent
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 RequestWillBeSentExtraInfoEvent
impl RefUnwindSafe for RequestWillBeSentExtraInfoEvent
impl Send for RequestWillBeSentExtraInfoEvent
impl Sync for RequestWillBeSentExtraInfoEvent
impl Unpin for RequestWillBeSentExtraInfoEvent
impl UnwindSafe for RequestWillBeSentExtraInfoEvent
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