pub struct LeaveGroupResponse {
pub throttle_time_ms: i32,
pub error_code: i16,
pub members: Vec<MemberResponse>,
}Expand description
LeaveGroupResponse, version 3.
Fields§
§throttle_time_ms: i32The duration in milliseconds for which the request was throttled due to a quota violation, or zero if the request did not violate any quota.
error_code: i16The error code, or 0 if there was no error.
members: Vec<MemberResponse>List of leaving member responses.
Implementations§
Trait Implementations§
Source§impl ApiMessage for LeaveGroupResponse
impl ApiMessage for LeaveGroupResponse
Source§impl Clone for LeaveGroupResponse
impl Clone for LeaveGroupResponse
Source§fn clone(&self) -> LeaveGroupResponse
fn clone(&self) -> LeaveGroupResponse
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 LeaveGroupResponse
impl Debug for LeaveGroupResponse
Source§impl Default for LeaveGroupResponse
impl Default for LeaveGroupResponse
Source§impl<'de> Deserialize<'de> for LeaveGroupResponse
impl<'de> Deserialize<'de> for LeaveGroupResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LeaveGroupResponse
impl PartialEq for LeaveGroupResponse
Source§impl Readable for LeaveGroupResponse
impl Readable for LeaveGroupResponse
Source§impl Serialize for LeaveGroupResponse
impl Serialize for LeaveGroupResponse
Source§impl Writable for LeaveGroupResponse
impl Writable for LeaveGroupResponse
impl Response for LeaveGroupResponse
impl StructuralPartialEq for LeaveGroupResponse
Auto Trait Implementations§
impl Freeze for LeaveGroupResponse
impl RefUnwindSafe for LeaveGroupResponse
impl Send for LeaveGroupResponse
impl Sync for LeaveGroupResponse
impl Unpin for LeaveGroupResponse
impl UnwindSafe for LeaveGroupResponse
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