pub struct SyslogStatistics {
pub messages_sent: u64,
pub messages_failed: u64,
pub bytes_sent: u64,
pub connection_errors: u64,
}Expand description
Syslog client statistics
Fields§
§messages_sent: u64Total messages sent
messages_failed: u64Messages that failed to send
bytes_sent: u64Total bytes sent
connection_errors: u64Connection errors encountered
Trait Implementations§
Source§impl Clone for SyslogStatistics
impl Clone for SyslogStatistics
Source§fn clone(&self) -> SyslogStatistics
fn clone(&self) -> SyslogStatistics
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 SyslogStatistics
impl RefUnwindSafe for SyslogStatistics
impl Send for SyslogStatistics
impl Sync for SyslogStatistics
impl Unpin for SyslogStatistics
impl UnsafeUnpin for SyslogStatistics
impl UnwindSafe for SyslogStatistics
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more