pub struct NetworkSummary {
pub requests_total: usize,
pub responses_total: usize,
pub finished_total: usize,
pub failed_total: usize,
pub incomplete_total: usize,
pub inflight_total_at_capture: usize,
pub pending_by_resource_type: BTreeMap<String, usize>,
pub captured_body_files: usize,
pub redacted: bool,
}Fields§
§requests_total: usize§responses_total: usize§finished_total: usize§failed_total: usize§incomplete_total: usize§inflight_total_at_capture: usize§pending_by_resource_type: BTreeMap<String, usize>§captured_body_files: usize§redacted: boolTrait Implementations§
Source§impl Clone for NetworkSummary
impl Clone for NetworkSummary
Source§fn clone(&self) -> NetworkSummary
fn clone(&self) -> NetworkSummary
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 NetworkSummary
impl Debug for NetworkSummary
Source§impl Default for NetworkSummary
impl Default for NetworkSummary
Source§fn default() -> NetworkSummary
fn default() -> NetworkSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NetworkSummary
impl<'de> Deserialize<'de> for NetworkSummary
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 NetworkSummary
impl RefUnwindSafe for NetworkSummary
impl Send for NetworkSummary
impl Sync for NetworkSummary
impl Unpin for NetworkSummary
impl UnsafeUnpin for NetworkSummary
impl UnwindSafe for NetworkSummary
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