pub struct ProduceAck {
pub topic: String,
pub partition: i32,
pub base_offset: i64,
pub offset: i64,
pub log_append_time_ms: i64,
}Expand description
Produce Ack.
Fields§
§topic: StringTopic name.
partition: i32Partition number.
base_offset: i64Base Offset.
offset: i64Kafka offset.
log_append_time_ms: i64Log Append Time Ms.
Trait Implementations§
Source§impl Clone for ProduceAck
impl Clone for ProduceAck
Source§fn clone(&self) -> ProduceAck
fn clone(&self) -> ProduceAck
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 moreAuto Trait Implementations§
impl Freeze for ProduceAck
impl RefUnwindSafe for ProduceAck
impl Send for ProduceAck
impl Sync for ProduceAck
impl Unpin for ProduceAck
impl UnsafeUnpin for ProduceAck
impl UnwindSafe for ProduceAck
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