pub struct AgentNetworkEntry {Show 13 fields
pub id: String,
pub entry_type: String,
pub method: String,
pub url: String,
pub status: Option<u16>,
pub ok: Option<bool>,
pub started_at: String,
pub ended_at: Option<String>,
pub duration_ms: Option<f64>,
pub request_body_size: Option<u64>,
pub response_body_size: Option<u64>,
pub error: Option<String>,
pub window: Option<String>,
}Fields§
§id: String§entry_type: String§method: String§url: String§status: Option<u16>§ok: Option<bool>§started_at: String§ended_at: Option<String>§duration_ms: Option<f64>§request_body_size: Option<u64>§response_body_size: Option<u64>§error: Option<String>§window: Option<String>Trait Implementations§
Source§impl Clone for AgentNetworkEntry
impl Clone for AgentNetworkEntry
Source§fn clone(&self) -> AgentNetworkEntry
fn clone(&self) -> AgentNetworkEntry
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 AgentNetworkEntry
impl Debug for AgentNetworkEntry
Source§impl<'de> Deserialize<'de> for AgentNetworkEntry
impl<'de> Deserialize<'de> for AgentNetworkEntry
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 AgentNetworkEntry
impl RefUnwindSafe for AgentNetworkEntry
impl Send for AgentNetworkEntry
impl Sync for AgentNetworkEntry
impl Unpin for AgentNetworkEntry
impl UnsafeUnpin for AgentNetworkEntry
impl UnwindSafe for AgentNetworkEntry
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