pub struct ListGroupsRequestV4 {
pub correlation_id: i32,
pub client_id: Option<String>,
pub states_filter: Vec<String>,
}Expand description
Kafka ListGroups v4 request.
Version 4 adds a broker-side group-state filter and uses the flexible request header/body encoding.
Fields§
§correlation_id: i32§client_id: Option<String>§states_filter: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for ListGroupsRequestV4
impl Clone for ListGroupsRequestV4
Source§fn clone(&self) -> ListGroupsRequestV4
fn clone(&self) -> ListGroupsRequestV4
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 ListGroupsRequestV4
impl Debug for ListGroupsRequestV4
impl Eq for ListGroupsRequestV4
Source§impl PartialEq for ListGroupsRequestV4
impl PartialEq for ListGroupsRequestV4
impl StructuralPartialEq for ListGroupsRequestV4
Auto Trait Implementations§
impl Freeze for ListGroupsRequestV4
impl RefUnwindSafe for ListGroupsRequestV4
impl Send for ListGroupsRequestV4
impl Sync for ListGroupsRequestV4
impl Unpin for ListGroupsRequestV4
impl UnsafeUnpin for ListGroupsRequestV4
impl UnwindSafe for ListGroupsRequestV4
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