pub struct DeleteRecordsResponse {
pub throttle_time_ms: Int32,
pub topics: Vec<DeleteResponseTopic>,
pub tagged_fields: Option<TaggedFields>,
}Fields§
§throttle_time_ms: Int32The duration in milliseconds for which the request was throttled due to a quota violation, or zero if the request did not violate any quota.
topics: Vec<DeleteResponseTopic>Each topic that we wanted to delete records from.
tagged_fields: Option<TaggedFields>The tagged fields.
Added in version 2
Trait Implementations§
Source§impl Debug for DeleteRecordsResponse
impl Debug for DeleteRecordsResponse
Source§impl<R> ReadVersionedType<R> for DeleteRecordsResponsewhere
R: Read,
impl<R> ReadVersionedType<R> for DeleteRecordsResponsewhere
R: Read,
fn read_versioned( reader: &mut R, version: ApiVersion, ) -> Result<Self, ReadVersionedError>
Auto Trait Implementations§
impl Freeze for DeleteRecordsResponse
impl RefUnwindSafe for DeleteRecordsResponse
impl Send for DeleteRecordsResponse
impl Sync for DeleteRecordsResponse
impl Unpin for DeleteRecordsResponse
impl UnwindSafe for DeleteRecordsResponse
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