pub struct TopicProduceData {
pub name: String,
pub partition_data: Vec<PartitionProduceData>,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§name: String
The topic name.
partition_data: Vec<PartitionProduceData>
Each partition to produce to.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
Source§impl Clone for TopicProduceData
impl Clone for TopicProduceData
Source§fn clone(&self) -> TopicProduceData
fn clone(&self) -> TopicProduceData
Returns a duplicate 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 TopicProduceData
impl Debug for TopicProduceData
Source§impl Decodable for TopicProduceData
impl Decodable for TopicProduceData
Source§impl Default for TopicProduceData
impl Default for TopicProduceData
Source§fn default() -> TopicProduceData
fn default() -> TopicProduceData
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TopicProduceData
impl RefUnwindSafe for TopicProduceData
impl Send for TopicProduceData
impl Sync for TopicProduceData
impl Unpin for TopicProduceData
impl UnwindSafe for TopicProduceData
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