pub struct DeleteTopicsResponse {
pub throttle_time_ms: Option<Int32>,
pub responses: Vec<DeleteTopicsResponseTopic>,
pub tagged_fields: Option<TaggedFields>,
}
Fields§
§throttle_time_ms: Option<Int32>
The duration in milliseconds for which the request was throttled due to a quota violation, or zero if the request did not violate any quota.
Added in version 1.
responses: Vec<DeleteTopicsResponseTopic>
The results for each topic we tried to delete.
tagged_fields: Option<TaggedFields>
The tagged fields.
Added in version 4.
Trait Implementations§
Source§impl Debug for DeleteTopicsResponse
impl Debug for DeleteTopicsResponse
Source§impl<R> ReadVersionedType<R> for DeleteTopicsResponsewhere
R: Read,
impl<R> ReadVersionedType<R> for DeleteTopicsResponsewhere
R: Read,
fn read_versioned( reader: &mut R, version: ApiVersion, ) -> Result<Self, ReadVersionedError>
Auto Trait Implementations§
impl Freeze for DeleteTopicsResponse
impl RefUnwindSafe for DeleteTopicsResponse
impl Send for DeleteTopicsResponse
impl Sync for DeleteTopicsResponse
impl Unpin for DeleteTopicsResponse
impl UnwindSafe for DeleteTopicsResponse
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