pub struct LogStreamStats {Show 14 fields
pub sampled_at: CuTime,
pub packets_sent: u64,
pub bytes_sent: u64,
pub queue_drops: u64,
pub expired_packets: u64,
pub transport_drops: u64,
pub inbox_drops: u64,
pub shutdown_drops: u64,
pub recovery_rounds: u64,
pub recovery_superseded: u64,
pub queue_peak: usize,
pub stopped: bool,
pub failed: bool,
pub feedback: Option<LogStreamFeedbackStats>,
}Fields§
§sampled_at: CuTime§packets_sent: u64§bytes_sent: u64§queue_drops: u64§expired_packets: u64§transport_drops: u64§inbox_drops: u64§shutdown_drops: u64§recovery_rounds: u64§recovery_superseded: u64§queue_peak: usize§stopped: bool§failed: bool§feedback: Option<LogStreamFeedbackStats>Trait Implementations§
Source§impl Clone for LogStreamStats
impl Clone for LogStreamStats
Source§fn clone(&self) -> LogStreamStats
fn clone(&self) -> LogStreamStats
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 moreimpl Copy for LogStreamStats
Source§impl Debug for LogStreamStats
impl Debug for LogStreamStats
Source§impl Default for LogStreamStats
impl Default for LogStreamStats
Source§fn default() -> LogStreamStats
fn default() -> LogStreamStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LogStreamStats
impl RefUnwindSafe for LogStreamStats
impl Send for LogStreamStats
impl Sync for LogStreamStats
impl Unpin for LogStreamStats
impl UnsafeUnpin for LogStreamStats
impl UnwindSafe for LogStreamStats
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,
impl<T> GetTypeRegistration for T
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