pub struct CreateTopicsRequest {
pub topics: Vec<CreatableTopic>,
pub timeout_ms: i32,
pub validate_only: bool,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§topics: Vec<CreatableTopic>
The topics to create.
timeout_ms: i32
How long to wait in milliseconds before timing out the request.
validate_only: bool
If true, check that the topics can be created as specified, but don’t create anything.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
source§impl Debug for CreateTopicsRequest
impl Debug for CreateTopicsRequest
source§impl Decodable for CreateTopicsRequest
impl Decodable for CreateTopicsRequest
source§impl Default for CreateTopicsRequest
impl Default for CreateTopicsRequest
source§fn default() -> CreateTopicsRequest
fn default() -> CreateTopicsRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for CreateTopicsRequest
impl Send for CreateTopicsRequest
impl Sync for CreateTopicsRequest
impl Unpin for CreateTopicsRequest
impl UnwindSafe for CreateTopicsRequest
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