pub type GroupDescription = ConsumerGroupDescription;Expand description
Backwards-compatible alias for ConsumerGroupDescription.
Aliased Type§
pub struct GroupDescription {
pub group_id: String,
pub state: String,
pub protocol_type: String,
pub protocol_data: String,
pub members: Vec<ConsumerGroupMemberDescription>,
pub authorized_operations: Option<i32>,
}Fields§
§group_id: StringConsumer group ID.
state: StringGroup state reported by Kafka.
protocol_type: StringProtocol type, such as consumer, classic, or share.
protocol_data: StringProtocol-specific data, usually the assignor or protocol name.
members: Vec<ConsumerGroupMemberDescription>Members currently in the group.
Authorized operations bitset when returned by the broker.