Struct kafka_api::produce_request::TopicProduceData
source · 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 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 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 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