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 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 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 Freeze for TopicProduceResponse
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