pub struct ConsumerGroupMemberDescription {
pub member_id: String,
pub group_instance_id: Option<String>,
pub client_id: String,
pub client_host: String,
pub member_metadata_bytes: usize,
pub member_assignment_bytes: usize,
}Expand description
Metadata for one member of a described consumer group.
Fields§
§member_id: StringKafka-assigned member ID.
group_instance_id: Option<String>Static membership instance ID, when configured.
client_id: StringClient ID reported by the member.
client_host: StringHost reported by the member.
member_metadata_bytes: usizeCount derived from member metadata. For consumer/share groups this is the number of subscribed topic names; for classic groups it is decoded from the classic subscription payload when possible.
member_assignment_bytes: usizeCount derived from member assignment metadata. For consumer/share groups this is the number of assigned partitions; for classic groups it is decoded from the classic assignment payload when possible.
Trait Implementations§
Source§impl Clone for ConsumerGroupMemberDescription
impl Clone for ConsumerGroupMemberDescription
Source§fn clone(&self) -> ConsumerGroupMemberDescription
fn clone(&self) -> ConsumerGroupMemberDescription
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 PartialEq for ConsumerGroupMemberDescription
impl PartialEq for ConsumerGroupMemberDescription
Source§fn eq(&self, other: &ConsumerGroupMemberDescription) -> bool
fn eq(&self, other: &ConsumerGroupMemberDescription) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ConsumerGroupMemberDescription
impl StructuralPartialEq for ConsumerGroupMemberDescription
Auto Trait Implementations§
impl Freeze for ConsumerGroupMemberDescription
impl RefUnwindSafe for ConsumerGroupMemberDescription
impl Send for ConsumerGroupMemberDescription
impl Sync for ConsumerGroupMemberDescription
impl Unpin for ConsumerGroupMemberDescription
impl UnsafeUnpin for ConsumerGroupMemberDescription
impl UnwindSafe for ConsumerGroupMemberDescription
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.