pub struct TopicProduceResponse {
pub name: String,
pub partitions: Vec<PartitionProduceResponse>,
}Fields§
§name: StringThe topic name
partitions: Vec<PartitionProduceResponse>Each partition that we produced to within the topic.
Trait Implementations§
Source§impl Debug for TopicProduceResponse
impl Debug for TopicProduceResponse
Source§impl Decoder for TopicProduceResponse
impl Decoder for TopicProduceResponse
Source§impl Default for TopicProduceResponse
impl Default for TopicProduceResponse
Source§impl Encoder for TopicProduceResponse
impl Encoder for TopicProduceResponse
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