pub struct NetworkEntry {Show 19 fields
pub request_id: String,
pub state: NetworkEntryState,
pub redirect_from_request_id: Option<String>,
pub frame_id: Option<String>,
pub loader_id: Option<String>,
pub resource_type: String,
pub request_url: String,
pub method: String,
pub initiator: Option<Value>,
pub status: Option<u16>,
pub mime_type: Option<String>,
pub request_headers: BTreeMap<String, String>,
pub response_headers: BTreeMap<String, String>,
pub request_post_data_present: bool,
pub request_post_data_size_bytes: Option<usize>,
pub body_file: Option<PathBuf>,
pub timing: NetworkTiming,
pub failure: Option<String>,
pub hints: BTreeMap<String, Value>,
}Fields§
§request_id: String§state: NetworkEntryState§redirect_from_request_id: Option<String>§frame_id: Option<String>§loader_id: Option<String>§resource_type: String§request_url: String§method: String§initiator: Option<Value>§status: Option<u16>§mime_type: Option<String>§request_headers: BTreeMap<String, String>§response_headers: BTreeMap<String, String>§request_post_data_present: bool§request_post_data_size_bytes: Option<usize>§body_file: Option<PathBuf>§timing: NetworkTiming§failure: Option<String>§hints: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for NetworkEntry
impl Clone for NetworkEntry
Source§fn clone(&self) -> NetworkEntry
fn clone(&self) -> NetworkEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NetworkEntry
impl Debug for NetworkEntry
Source§impl<'de> Deserialize<'de> for NetworkEntry
impl<'de> Deserialize<'de> for NetworkEntry
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 NetworkEntry
impl RefUnwindSafe for NetworkEntry
impl Send for NetworkEntry
impl Sync for NetworkEntry
impl Unpin for NetworkEntry
impl UnsafeUnpin for NetworkEntry
impl UnwindSafe for NetworkEntry
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