Struct redis::streams::StreamInfoGroup [−][src]
pub struct StreamInfoGroup { pub name: String, pub consumers: usize, pub pending: usize, pub last_delivered_id: String, }
This is supported on crate feature
streams
only.Expand description
A group parsed from xinfo_groups
command.
Fields
name: String
The group name.
consumers: usize
Number of consumers known in the group.
pending: usize
Number of pending messages (delivered but not yet acknowledged) in the group.
last_delivered_id: String
Last ID delivered to this group.
Trait Implementations
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for StreamInfoGroup
impl Send for StreamInfoGroup
impl Sync for StreamInfoGroup
impl Unpin for StreamInfoGroup
impl UnwindSafe for StreamInfoGroup
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V