pub struct ListGroupsRequestData {
pub states_filter: Vec<KafkaString>,
pub types_filter: Vec<KafkaString>,
pub _unknown_tagged_fields: Vec<RawTaggedField>,
}Fields§
§states_filter: Vec<KafkaString>The states of the groups we want to list. If empty, all groups are returned with their state.
types_filter: Vec<KafkaString>The types of the groups we want to list. If empty, all groups are returned with their type.
_unknown_tagged_fields: Vec<RawTaggedField>Implementations§
Source§impl ListGroupsRequestData
impl ListGroupsRequestData
pub fn with_states_filter(self, value: Vec<KafkaString>) -> Self
pub fn with_types_filter(self, value: Vec<KafkaString>) -> Self
pub fn read(buf: &mut Bytes, version: i16) -> Result<Self>
pub fn write(&self, buf: &mut BytesMut, version: i16) -> Result<()>
pub fn encoded_len(&self, version: i16) -> Result<usize>
Trait Implementations§
Source§impl Clone for ListGroupsRequestData
impl Clone for ListGroupsRequestData
Source§fn clone(&self) -> ListGroupsRequestData
fn clone(&self) -> ListGroupsRequestData
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 ListGroupsRequestData
impl Debug for ListGroupsRequestData
Source§impl Default for ListGroupsRequestData
impl Default for ListGroupsRequestData
Source§impl PartialEq for ListGroupsRequestData
impl PartialEq for ListGroupsRequestData
Source§fn eq(&self, other: &ListGroupsRequestData) -> bool
fn eq(&self, other: &ListGroupsRequestData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListGroupsRequestData
Auto Trait Implementations§
impl Freeze for ListGroupsRequestData
impl RefUnwindSafe for ListGroupsRequestData
impl Send for ListGroupsRequestData
impl Sync for ListGroupsRequestData
impl Unpin for ListGroupsRequestData
impl UnsafeUnpin for ListGroupsRequestData
impl UnwindSafe for ListGroupsRequestData
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