pub struct ListGroupsResponseV5 {
pub throttle_time_ms: i32,
pub error_code: i16,
pub groups: Vec<ListedGroupV5>,
}Expand description
Kafka ListGroups v5 response.
Fields§
§throttle_time_ms: i32§error_code: i16§groups: Vec<ListedGroupV5>Implementations§
Source§impl ListGroupsResponseV5
impl ListGroupsResponseV5
pub fn decode_body(decoder: &mut Decoder<'_>) -> Result<Self>
Trait Implementations§
Source§impl Clone for ListGroupsResponseV5
impl Clone for ListGroupsResponseV5
Source§fn clone(&self) -> ListGroupsResponseV5
fn clone(&self) -> ListGroupsResponseV5
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 moreSource§impl Debug for ListGroupsResponseV5
impl Debug for ListGroupsResponseV5
impl Eq for ListGroupsResponseV5
Source§impl PartialEq for ListGroupsResponseV5
impl PartialEq for ListGroupsResponseV5
impl StructuralPartialEq for ListGroupsResponseV5
Auto Trait Implementations§
impl Freeze for ListGroupsResponseV5
impl RefUnwindSafe for ListGroupsResponseV5
impl Send for ListGroupsResponseV5
impl Sync for ListGroupsResponseV5
impl Unpin for ListGroupsResponseV5
impl UnsafeUnpin for ListGroupsResponseV5
impl UnwindSafe for ListGroupsResponseV5
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