pub struct ListGroupsRequestV5 {
pub correlation_id: i32,
pub client_id: Option<String>,
pub states_filter: Vec<String>,
pub types_filter: Vec<String>,
}Expand description
Kafka ListGroups v5 request.
Version 5 adds a group-type filter to the v4 state filter.
Fields§
§correlation_id: i32§client_id: Option<String>§states_filter: Vec<String>§types_filter: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for ListGroupsRequestV5
impl Clone for ListGroupsRequestV5
Source§fn clone(&self) -> ListGroupsRequestV5
fn clone(&self) -> ListGroupsRequestV5
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 ListGroupsRequestV5
impl Debug for ListGroupsRequestV5
impl Eq for ListGroupsRequestV5
Source§impl PartialEq for ListGroupsRequestV5
impl PartialEq for ListGroupsRequestV5
impl StructuralPartialEq for ListGroupsRequestV5
Auto Trait Implementations§
impl Freeze for ListGroupsRequestV5
impl RefUnwindSafe for ListGroupsRequestV5
impl Send for ListGroupsRequestV5
impl Sync for ListGroupsRequestV5
impl Unpin for ListGroupsRequestV5
impl UnsafeUnpin for ListGroupsRequestV5
impl UnwindSafe for ListGroupsRequestV5
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