pub struct TopicLoadEntry {
pub topic: String,
pub pending: usize,
pub max_depth: usize,
pub dropped_messages: usize,
pub lag_messages: usize,
pub retry_inflight: usize,
pub replay_attempts: usize,
pub degraded_subscribers: usize,
}Fields§
§topic: String§pending: usize§max_depth: usize§dropped_messages: usize§lag_messages: usize§retry_inflight: usize§replay_attempts: usize§degraded_subscribers: usizeImplementations§
Source§impl TopicLoadEntry
impl TopicLoadEntry
pub fn utilization_ratio(&self) -> f64
Trait Implementations§
Source§impl Clone for TopicLoadEntry
impl Clone for TopicLoadEntry
Source§fn clone(&self) -> TopicLoadEntry
fn clone(&self) -> TopicLoadEntry
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 TopicLoadEntry
impl Debug for TopicLoadEntry
Source§impl PartialEq for TopicLoadEntry
impl PartialEq for TopicLoadEntry
impl Eq for TopicLoadEntry
impl StructuralPartialEq for TopicLoadEntry
Auto Trait Implementations§
impl Freeze for TopicLoadEntry
impl RefUnwindSafe for TopicLoadEntry
impl Send for TopicLoadEntry
impl Sync for TopicLoadEntry
impl Unpin for TopicLoadEntry
impl UnsafeUnpin for TopicLoadEntry
impl UnwindSafe for TopicLoadEntry
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