pub struct ResponseReceivedExtraInfo {
pub method: ResponseReceivedExtraInfoMethod,
pub params: ResponseReceivedExtraInfoParams,
}Expand description
Fired when additional information about a responseReceived event is available from the network stack. Not every responseReceived event will have an additional responseReceivedExtraInfo for it, and responseReceivedExtraInfo may be fired before or after responseReceived. responseReceivedExtraInfo
Fields§
§method: ResponseReceivedExtraInfoMethod§params: ResponseReceivedExtraInfoParamsImplementations§
Source§impl ResponseReceivedExtraInfo
impl ResponseReceivedExtraInfo
pub const IDENTIFIER: &'static str = "Network.responseReceivedExtraInfo"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ResponseReceivedExtraInfo
impl Clone for ResponseReceivedExtraInfo
Source§fn clone(&self) -> ResponseReceivedExtraInfo
fn clone(&self) -> ResponseReceivedExtraInfo
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 ResponseReceivedExtraInfo
impl Debug for ResponseReceivedExtraInfo
Source§impl<'de> Deserialize<'de> for ResponseReceivedExtraInfo
impl<'de> Deserialize<'de> for ResponseReceivedExtraInfo
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<ResponseReceivedExtraInfo> for BrowserProtocolEvents
impl From<ResponseReceivedExtraInfo> for BrowserProtocolEvents
Source§fn from(v: ResponseReceivedExtraInfo) -> Self
fn from(v: ResponseReceivedExtraInfo) -> Self
Converts to this type from the input type.
Source§impl From<ResponseReceivedExtraInfo> for Event
impl From<ResponseReceivedExtraInfo> for Event
Source§fn from(v: ResponseReceivedExtraInfo) -> Self
fn from(v: ResponseReceivedExtraInfo) -> Self
Converts to this type from the input type.
Source§impl From<ResponseReceivedExtraInfo> for NetworkEvents
impl From<ResponseReceivedExtraInfo> for NetworkEvents
Source§fn from(v: ResponseReceivedExtraInfo) -> Self
fn from(v: ResponseReceivedExtraInfo) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BrowserProtocolEvents> for ResponseReceivedExtraInfo
impl TryFrom<BrowserProtocolEvents> for ResponseReceivedExtraInfo
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, <ResponseReceivedExtraInfo as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <ResponseReceivedExtraInfo as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for ResponseReceivedExtraInfo
impl TryFrom<Event> for ResponseReceivedExtraInfo
Source§impl TryFrom<NetworkEvents> for ResponseReceivedExtraInfo
impl TryFrom<NetworkEvents> for ResponseReceivedExtraInfo
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, <ResponseReceivedExtraInfo as TryFrom<NetworkEvents>>::Error>
fn try_from( e: NetworkEvents, ) -> Result<Self, <ResponseReceivedExtraInfo as TryFrom<NetworkEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for ResponseReceivedExtraInfo
Auto Trait Implementations§
impl Freeze for ResponseReceivedExtraInfo
impl RefUnwindSafe for ResponseReceivedExtraInfo
impl Send for ResponseReceivedExtraInfo
impl Sync for ResponseReceivedExtraInfo
impl Unpin for ResponseReceivedExtraInfo
impl UnsafeUnpin for ResponseReceivedExtraInfo
impl UnwindSafe for ResponseReceivedExtraInfo
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