pub struct CreateTopicsResponse {
pub throttle_time_ms: i32,
pub topics: Vec<CreatableTopicResult>,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
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.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
source§impl Debug for CreateTopicsResponse
impl Debug for CreateTopicsResponse
source§impl Default for CreateTopicsResponse
impl Default for CreateTopicsResponse
source§fn default() -> CreateTopicsResponse
fn default() -> CreateTopicsResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for CreateTopicsResponse
impl Send for CreateTopicsResponse
impl Sync for CreateTopicsResponse
impl Unpin for CreateTopicsResponse
impl UnwindSafe for CreateTopicsResponse
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