pub struct TopicProduceResponse {
pub name: String,
pub partitions: Vec<PartitionProduceResponse>,
}
Fields§
§name: String
The 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<'de> Deserialize<'de> for TopicProduceResponse
impl<'de> Deserialize<'de> for TopicProduceResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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