pub struct ConsumerGroupStatus {
pub consumer_group: String,
pub stream_name: String,
pub last_acked_seq: i64,
pub updated_at: DateTime<Utc>,
}Expand description
Status and offset information for a consumer group registered on a stream log.
Fields§
§consumer_group: StringIdentifier of the consumer group (e.g., “analytics_processor”).
stream_name: StringName of the stream log.
last_acked_seq: i64Highest sequence number successfully acknowledged by this consumer group.
updated_at: DateTime<Utc>Timestamp when the offset was last updated.
Trait Implementations§
Source§impl Clone for ConsumerGroupStatus
impl Clone for ConsumerGroupStatus
Source§fn clone(&self) -> ConsumerGroupStatus
fn clone(&self) -> ConsumerGroupStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConsumerGroupStatus
impl Debug for ConsumerGroupStatus
Source§impl<'de> Deserialize<'de> for ConsumerGroupStatus
impl<'de> Deserialize<'de> for ConsumerGroupStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ConsumerGroupStatus
impl PartialEq for ConsumerGroupStatus
Source§impl Serialize for ConsumerGroupStatus
impl Serialize for ConsumerGroupStatus
impl StructuralPartialEq for ConsumerGroupStatus
Auto Trait Implementations§
impl Freeze for ConsumerGroupStatus
impl RefUnwindSafe for ConsumerGroupStatus
impl Send for ConsumerGroupStatus
impl Sync for ConsumerGroupStatus
impl Unpin for ConsumerGroupStatus
impl UnsafeUnpin for ConsumerGroupStatus
impl UnwindSafe for ConsumerGroupStatus
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