pub struct DescribeShareGroupOffsetsRequestTopic {
pub topic_name: KafkaString,
pub partitions: Vec<i32>,
pub _unknown_tagged_fields: Vec<RawTaggedField>,
}Fields§
§topic_name: KafkaStringThe topic name.
partitions: Vec<i32>The partitions.
_unknown_tagged_fields: Vec<RawTaggedField>Implementations§
pub fn with_topic_name(self, value: KafkaString) -> Self
pub fn with_partitions(self, value: Vec<i32>) -> 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§fn clone(&self) -> DescribeShareGroupOffsetsRequestTopic
fn clone(&self) -> DescribeShareGroupOffsetsRequestTopic
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§fn eq(&self, other: &DescribeShareGroupOffsetsRequestTopic) -> bool
fn eq(&self, other: &DescribeShareGroupOffsetsRequestTopic) -> bool
Tests for
self and other values to be equal, and is used by ==.Auto Trait Implementations§
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