pub struct ProduceConfirm {
pub topic: String,
pub partition_confirms: Vec<ProducePartitionConfirm>,
}
Expand description
A confirmation of messages sent back by the Kafka broker to confirm delivery of producer messages.
Fields§
§topic: String
The topic the messages were sent to.
partition_confirms: Vec<ProducePartitionConfirm>
The list of individual confirmations for each offset and partition.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProduceConfirm
impl RefUnwindSafe for ProduceConfirm
impl Send for ProduceConfirm
impl Sync for ProduceConfirm
impl Unpin for ProduceConfirm
impl UnwindSafe for ProduceConfirm
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