pub struct ConsumerGroupInfo {
pub name: String,
pub consumers: u64,
pub pending: u64,
pub last_delivered_id: String,
}Expand description
Information about a consumer group
Fields§
§name: StringThe name of the consumer group
consumers: u64The number of consumers in the group
pending: u64The number of pending messages
last_delivered_id: StringThe ID of the last delivered message
Trait Implementations§
Source§impl Clone for ConsumerGroupInfo
impl Clone for ConsumerGroupInfo
Source§fn clone(&self) -> ConsumerGroupInfo
fn clone(&self) -> ConsumerGroupInfo
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 ConsumerGroupInfo
impl RefUnwindSafe for ConsumerGroupInfo
impl Send for ConsumerGroupInfo
impl Sync for ConsumerGroupInfo
impl Unpin for ConsumerGroupInfo
impl UnwindSafe for ConsumerGroupInfo
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