pub struct DeleteStateResult {
pub topic_id: KafkaUuid,
pub partitions: Vec<PartitionResult>,
pub _unknown_tagged_fields: Vec<RawTaggedField>,
}Fields§
§topic_id: KafkaUuidThe topic identifier.
partitions: Vec<PartitionResult>The results for the partitions.
_unknown_tagged_fields: Vec<RawTaggedField>Implementations§
Source§impl DeleteStateResult
impl DeleteStateResult
pub fn with_topic_id(self, value: KafkaUuid) -> Self
pub fn with_partitions(self, value: Vec<PartitionResult>) -> 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 DeleteStateResult
impl Clone for DeleteStateResult
Source§fn clone(&self) -> DeleteStateResult
fn clone(&self) -> DeleteStateResult
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 DeleteStateResult
impl Debug for DeleteStateResult
Source§impl Default for DeleteStateResult
impl Default for DeleteStateResult
Source§impl PartialEq for DeleteStateResult
impl PartialEq for DeleteStateResult
Source§fn eq(&self, other: &DeleteStateResult) -> bool
fn eq(&self, other: &DeleteStateResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteStateResult
Auto Trait Implementations§
impl Freeze for DeleteStateResult
impl RefUnwindSafe for DeleteStateResult
impl Send for DeleteStateResult
impl Sync for DeleteStateResult
impl Unpin for DeleteStateResult
impl UnsafeUnpin for DeleteStateResult
impl UnwindSafe for DeleteStateResult
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