pub struct ShareGroupHeartbeatRequestV1 {
pub correlation_id: i32,
pub client_id: Option<String>,
pub group_id: String,
pub member_id: String,
pub member_epoch: i32,
pub rack_id: Option<String>,
pub subscribed_topic_names: Option<Vec<String>>,
}Expand description
ShareGroupHeartbeat v1 request.
Version 1 is the stable KIP-932 wire shape. Kafka 4.0’s early-access v0 is intentionally not exposed here because it was removed in Kafka 4.1.
Fields§
§correlation_id: i32§client_id: Option<String>§group_id: String§member_id: String§member_epoch: i32§rack_id: Option<String>§subscribed_topic_names: Option<Vec<String>>Implementations§
Trait Implementations§
Source§fn clone(&self) -> ShareGroupHeartbeatRequestV1
fn clone(&self) -> ShareGroupHeartbeatRequestV1
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
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