pub struct ConsumerGroupListing {
pub group_id: String,
pub protocol_type: String,
pub state: Option<String>,
pub group_type: Option<String>,
}Expand description
Summary returned by KafkaAdmin::list_groups.
Fields§
§group_id: StringConsumer group ID.
protocol_type: StringProtocol type reported by Kafka.
state: Option<String>Group state when provided by the broker.
group_type: Option<String>Group type when provided by newer broker versions, such as classic or share.
Trait Implementations§
Source§impl Clone for ConsumerGroupListing
impl Clone for ConsumerGroupListing
Source§fn clone(&self) -> ConsumerGroupListing
fn clone(&self) -> ConsumerGroupListing
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 ConsumerGroupListing
impl Debug for ConsumerGroupListing
Source§impl PartialEq for ConsumerGroupListing
impl PartialEq for ConsumerGroupListing
impl Eq for ConsumerGroupListing
impl StructuralPartialEq for ConsumerGroupListing
Auto Trait Implementations§
impl Freeze for ConsumerGroupListing
impl RefUnwindSafe for ConsumerGroupListing
impl Send for ConsumerGroupListing
impl Sync for ConsumerGroupListing
impl Unpin for ConsumerGroupListing
impl UnsafeUnpin for ConsumerGroupListing
impl UnwindSafe for ConsumerGroupListing
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.