#[non_exhaustive]pub struct ConsumerPartitionMetadata {
pub offset: i64,
pub metadata: String,
/* private fields */
}Expand description
Metadata for a consumer group corresponding to a specific partition.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.offset: i64Required. The current offset for this partition, or 0 if no offset has been committed.
metadata: StringOptional. The associated metadata for this partition, or empty if it does not exist.
Implementations§
Trait Implementations§
Source§impl Clone for ConsumerPartitionMetadata
impl Clone for ConsumerPartitionMetadata
Source§fn clone(&self) -> ConsumerPartitionMetadata
fn clone(&self) -> ConsumerPartitionMetadata
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 ConsumerPartitionMetadata
impl Debug for ConsumerPartitionMetadata
Source§impl Default for ConsumerPartitionMetadata
impl Default for ConsumerPartitionMetadata
Source§fn default() -> ConsumerPartitionMetadata
fn default() -> ConsumerPartitionMetadata
Returns the “default value” for a type. Read more
Source§impl Message for ConsumerPartitionMetadata
impl Message for ConsumerPartitionMetadata
impl StructuralPartialEq for ConsumerPartitionMetadata
Auto Trait Implementations§
impl Freeze for ConsumerPartitionMetadata
impl RefUnwindSafe for ConsumerPartitionMetadata
impl Send for ConsumerPartitionMetadata
impl Sync for ConsumerPartitionMetadata
impl Unpin for ConsumerPartitionMetadata
impl UnwindSafe for ConsumerPartitionMetadata
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