pub struct RequestWillBeSent {
pub method: RequestWillBeSentMethod,
pub params: RequestWillBeSentParams,
}Expand description
Fired when page is about to send HTTP request. requestWillBeSent
Fields§
§method: RequestWillBeSentMethod§params: RequestWillBeSentParamsImplementations§
Source§impl RequestWillBeSent
impl RequestWillBeSent
pub const IDENTIFIER: &'static str = "Network.requestWillBeSent"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for RequestWillBeSent
impl Clone for RequestWillBeSent
Source§fn clone(&self) -> RequestWillBeSent
fn clone(&self) -> RequestWillBeSent
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 RequestWillBeSent
impl Debug for RequestWillBeSent
Source§impl<'de> Deserialize<'de> for RequestWillBeSent
impl<'de> Deserialize<'de> for RequestWillBeSent
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 From<RequestWillBeSent> for BrowserProtocolEvents
impl From<RequestWillBeSent> for BrowserProtocolEvents
Source§fn from(v: RequestWillBeSent) -> Self
fn from(v: RequestWillBeSent) -> Self
Converts to this type from the input type.
Source§impl From<RequestWillBeSent> for Event
impl From<RequestWillBeSent> for Event
Source§fn from(v: RequestWillBeSent) -> Self
fn from(v: RequestWillBeSent) -> Self
Converts to this type from the input type.
Source§impl From<RequestWillBeSent> for NetworkEvents
impl From<RequestWillBeSent> for NetworkEvents
Source§fn from(v: RequestWillBeSent) -> Self
fn from(v: RequestWillBeSent) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RequestWillBeSent
impl PartialEq for RequestWillBeSent
Source§impl Serialize for RequestWillBeSent
impl Serialize for RequestWillBeSent
Source§impl TryFrom<BrowserProtocolEvents> for RequestWillBeSent
impl TryFrom<BrowserProtocolEvents> for RequestWillBeSent
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <RequestWillBeSent as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <RequestWillBeSent as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for RequestWillBeSent
impl TryFrom<Event> for RequestWillBeSent
Source§impl TryFrom<NetworkEvents> for RequestWillBeSent
impl TryFrom<NetworkEvents> for RequestWillBeSent
Source§type Error = NetworkEvents
type Error = NetworkEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: NetworkEvents,
) -> Result<Self, <RequestWillBeSent as TryFrom<NetworkEvents>>::Error>
fn try_from( e: NetworkEvents, ) -> Result<Self, <RequestWillBeSent as TryFrom<NetworkEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for RequestWillBeSent
Auto Trait Implementations§
impl Freeze for RequestWillBeSent
impl RefUnwindSafe for RequestWillBeSent
impl Send for RequestWillBeSent
impl Sync for RequestWillBeSent
impl Unpin for RequestWillBeSent
impl UnsafeUnpin for RequestWillBeSent
impl UnwindSafe for RequestWillBeSent
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