Struct kafka_api::produce_response::TopicProduceResponse
source · pub struct TopicProduceResponse {
pub name: String,
pub partition_responses: Vec<PartitionProduceResponse>,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§name: String
The topic name.
partition_responses: Vec<PartitionProduceResponse>
Each partition that we produced to within the topic.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
source§impl Clone for TopicProduceResponse
impl Clone for TopicProduceResponse
source§fn clone(&self) -> TopicProduceResponse
fn clone(&self) -> TopicProduceResponse
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 TopicProduceResponse
impl Debug for TopicProduceResponse
source§impl Default for TopicProduceResponse
impl Default for TopicProduceResponse
source§fn default() -> TopicProduceResponse
fn default() -> TopicProduceResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for TopicProduceResponse
impl Send for TopicProduceResponse
impl Sync for TopicProduceResponse
impl Unpin for TopicProduceResponse
impl UnwindSafe for TopicProduceResponse
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