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 Clone for CreateTopicsRequest
impl Clone for CreateTopicsRequest
Source§fn clone(&self) -> CreateTopicsRequest
fn clone(&self) -> CreateTopicsRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§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 Freeze for CreateTopicsRequest
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