pub struct ProviderBridgeConsumerStats {
pub id: u64,
pub connected: bool,
pub queue_len: usize,
pub queued_bytes: usize,
pub dropped_pending: u64,
pub dropped_total: u64,
pub queue_max_events: usize,
pub queue_max_bytes: usize,
}Fields§
§id: u64§connected: bool§queue_len: usize§queued_bytes: usize§dropped_pending: u64§dropped_total: u64§queue_max_events: usize§queue_max_bytes: usizeTrait Implementations§
Source§impl Clone for ProviderBridgeConsumerStats
impl Clone for ProviderBridgeConsumerStats
Source§fn clone(&self) -> ProviderBridgeConsumerStats
fn clone(&self) -> ProviderBridgeConsumerStats
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 moreSource§impl Debug for ProviderBridgeConsumerStats
impl Debug for ProviderBridgeConsumerStats
impl Eq for ProviderBridgeConsumerStats
impl StructuralPartialEq for ProviderBridgeConsumerStats
Auto Trait Implementations§
impl Freeze for ProviderBridgeConsumerStats
impl RefUnwindSafe for ProviderBridgeConsumerStats
impl Send for ProviderBridgeConsumerStats
impl Sync for ProviderBridgeConsumerStats
impl Unpin for ProviderBridgeConsumerStats
impl UnsafeUnpin for ProviderBridgeConsumerStats
impl UnwindSafe for ProviderBridgeConsumerStats
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> InterfaceConfigData for Twhere
T: Send + 'static,
impl<T> InterfaceConfigData for Twhere
T: Send + 'static,
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