pub struct KfDeleteTopicsResponse {
pub throttle_time_ms: i32,
pub responses: Vec<DeletableTopicResult>,
}
Fields§
§throttle_time_ms: i32
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.
responses: Vec<DeletableTopicResult>
The results for each topic.
Trait Implementations§
Source§impl Debug for KfDeleteTopicsResponse
impl Debug for KfDeleteTopicsResponse
Source§impl Decoder for KfDeleteTopicsResponse
impl Decoder for KfDeleteTopicsResponse
Source§impl Default for KfDeleteTopicsResponse
impl Default for KfDeleteTopicsResponse
Source§impl<'de> Deserialize<'de> for KfDeleteTopicsResponse
impl<'de> Deserialize<'de> for KfDeleteTopicsResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Encoder for KfDeleteTopicsResponse
impl Encoder for KfDeleteTopicsResponse
Auto Trait Implementations§
impl Freeze for KfDeleteTopicsResponse
impl RefUnwindSafe for KfDeleteTopicsResponse
impl Send for KfDeleteTopicsResponse
impl Sync for KfDeleteTopicsResponse
impl Unpin for KfDeleteTopicsResponse
impl UnwindSafe for KfDeleteTopicsResponse
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