pub struct ClientRow {
pub address: String,
pub last_seen_ago_s: f64,
pub requests: u64,
pub responses: u64,
pub dropped: u64,
pub interleaved: bool,
}Expand description
One row of the MRU client log (debug.clients).
Fields§
§address: String§last_seen_ago_s: f64Seconds since this client was last seen.
requests: u64§responses: u64§dropped: u64§interleaved: boolWhether this client is currently using interleaved mode.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ClientRow
impl<'de> Deserialize<'de> for ClientRow
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
impl StructuralPartialEq for ClientRow
Auto Trait Implementations§
impl Freeze for ClientRow
impl RefUnwindSafe for ClientRow
impl Send for ClientRow
impl Sync for ClientRow
impl Unpin for ClientRow
impl UnsafeUnpin for ClientRow
impl UnwindSafe for ClientRow
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