pub struct RemoteMetricsRow {
pub address: String,
pub sent_messages: u64,
pub sent_bytes: u64,
pub received_messages: u64,
pub received_bytes: u64,
pub errors: u64,
}Fields§
§address: String§sent_messages: u64§sent_bytes: u64§received_messages: u64§received_bytes: u64§errors: u64Trait Implementations§
Source§impl Clone for RemoteMetricsRow
impl Clone for RemoteMetricsRow
Source§fn clone(&self) -> RemoteMetricsRow
fn clone(&self) -> RemoteMetricsRow
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 moreAuto Trait Implementations§
impl Freeze for RemoteMetricsRow
impl RefUnwindSafe for RemoteMetricsRow
impl Send for RemoteMetricsRow
impl Sync for RemoteMetricsRow
impl Unpin for RemoteMetricsRow
impl UnsafeUnpin for RemoteMetricsRow
impl UnwindSafe for RemoteMetricsRow
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