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