pub struct DeleteTopicsResponseData {
pub throttle_time_ms: i32,
pub responses: Vec<DeletableTopicResult>,
pub _unknown_tagged_fields: Vec<RawTaggedField>,
}Fields§
§throttle_time_ms: i32The duration in milliseconds for which the request was throttled due to a quota violation, or zero if the request did not violate any quota.
responses: Vec<DeletableTopicResult>The results for each topic we tried to delete.
_unknown_tagged_fields: Vec<RawTaggedField>Implementations§
Source§impl DeleteTopicsResponseData
impl DeleteTopicsResponseData
pub fn with_throttle_time_ms(self, value: i32) -> Self
pub fn with_responses(self, value: Vec<DeletableTopicResult>) -> 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 DeleteTopicsResponseData
impl Clone for DeleteTopicsResponseData
Source§fn clone(&self) -> DeleteTopicsResponseData
fn clone(&self) -> DeleteTopicsResponseData
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 DeleteTopicsResponseData
impl Debug for DeleteTopicsResponseData
Source§impl Default for DeleteTopicsResponseData
impl Default for DeleteTopicsResponseData
Source§impl PartialEq for DeleteTopicsResponseData
impl PartialEq for DeleteTopicsResponseData
Source§fn eq(&self, other: &DeleteTopicsResponseData) -> bool
fn eq(&self, other: &DeleteTopicsResponseData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteTopicsResponseData
Auto Trait Implementations§
impl Freeze for DeleteTopicsResponseData
impl RefUnwindSafe for DeleteTopicsResponseData
impl Send for DeleteTopicsResponseData
impl Sync for DeleteTopicsResponseData
impl Unpin for DeleteTopicsResponseData
impl UnsafeUnpin for DeleteTopicsResponseData
impl UnwindSafe for DeleteTopicsResponseData
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