pub struct TopicPartitionTimestamp {
pub topic: String,
pub partition: i32,
pub timestamp: i64,
}Expand description
Topic Partition Timestamp.
Fields§
§topic: StringTopic name.
partition: i32Partition number.
timestamp: i64Timestamp.
Implementations§
Trait Implementations§
Source§impl Clone for TopicPartitionTimestamp
impl Clone for TopicPartitionTimestamp
Source§fn clone(&self) -> TopicPartitionTimestamp
fn clone(&self) -> TopicPartitionTimestamp
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 Debug for TopicPartitionTimestamp
impl Debug for TopicPartitionTimestamp
Source§impl PartialEq for TopicPartitionTimestamp
impl PartialEq for TopicPartitionTimestamp
impl Eq for TopicPartitionTimestamp
impl StructuralPartialEq for TopicPartitionTimestamp
Auto Trait Implementations§
impl Freeze for TopicPartitionTimestamp
impl RefUnwindSafe for TopicPartitionTimestamp
impl Send for TopicPartitionTimestamp
impl Sync for TopicPartitionTimestamp
impl Unpin for TopicPartitionTimestamp
impl UnsafeUnpin for TopicPartitionTimestamp
impl UnwindSafe for TopicPartitionTimestamp
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.