pub struct KfCreateTopicsResponse {
pub throttle_time_ms: i32,
pub topics: Vec<CreatableTopicResult>,
}
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.
topics: Vec<CreatableTopicResult>
Results for each topic we tried to create.
Trait Implementations§
Source§impl Debug for KfCreateTopicsResponse
impl Debug for KfCreateTopicsResponse
Source§impl Decoder for KfCreateTopicsResponse
impl Decoder for KfCreateTopicsResponse
Source§impl Default for KfCreateTopicsResponse
impl Default for KfCreateTopicsResponse
Source§impl<'de> Deserialize<'de> for KfCreateTopicsResponse
impl<'de> Deserialize<'de> for KfCreateTopicsResponse
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 KfCreateTopicsResponse
impl Encoder for KfCreateTopicsResponse
Auto Trait Implementations§
impl Freeze for KfCreateTopicsResponse
impl RefUnwindSafe for KfCreateTopicsResponse
impl Send for KfCreateTopicsResponse
impl Sync for KfCreateTopicsResponse
impl Unpin for KfCreateTopicsResponse
impl UnwindSafe for KfCreateTopicsResponse
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