pub struct TopicPartitionOffsetAndTimestamp {
pub topic: String,
pub partition: i32,
pub offset: i64,
pub timestamp: i64,
}Expand description
Topic Partition Offset And Timestamp.
Fields§
§topic: StringTopic name.
partition: i32Partition number.
offset: i64Kafka offset.
timestamp: i64Timestamp.
Implementations§
Trait Implementations§
Source§impl Clone for TopicPartitionOffsetAndTimestamp
impl Clone for TopicPartitionOffsetAndTimestamp
Source§fn clone(&self) -> TopicPartitionOffsetAndTimestamp
fn clone(&self) -> TopicPartitionOffsetAndTimestamp
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 PartialEq for TopicPartitionOffsetAndTimestamp
impl PartialEq for TopicPartitionOffsetAndTimestamp
Source§fn eq(&self, other: &TopicPartitionOffsetAndTimestamp) -> bool
fn eq(&self, other: &TopicPartitionOffsetAndTimestamp) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TopicPartitionOffsetAndTimestamp
impl StructuralPartialEq for TopicPartitionOffsetAndTimestamp
Auto Trait Implementations§
impl Freeze for TopicPartitionOffsetAndTimestamp
impl RefUnwindSafe for TopicPartitionOffsetAndTimestamp
impl Send for TopicPartitionOffsetAndTimestamp
impl Sync for TopicPartitionOffsetAndTimestamp
impl Unpin for TopicPartitionOffsetAndTimestamp
impl UnsafeUnpin for TopicPartitionOffsetAndTimestamp
impl UnwindSafe for TopicPartitionOffsetAndTimestamp
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.