pub struct JoinGroupResponse {
pub generation_id: i32,
pub protocol_name: String,
pub leader: String,
pub member_id: String,
pub members: Vec<String>,
}Expand description
Response for join group request
Fields§
§generation_id: i32§protocol_name: String§leader: String§member_id: String§members: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for JoinGroupResponse
impl RefUnwindSafe for JoinGroupResponse
impl Send for JoinGroupResponse
impl Sync for JoinGroupResponse
impl Unpin for JoinGroupResponse
impl UnwindSafe for JoinGroupResponse
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