pub struct XGroupCtx {
pub group: Vec<u8>,
pub consumer: Vec<u8>,
pub noack: bool,
}Expand description
The GROUP <name> <consumer> (+ NOACK) context an XREADGROUP
gather carries to each per-stream sub-query.
Fields§
§group: Vec<u8>Consumer-group name.
consumer: Vec<u8>Consumer name within the group.
noack: boolNOACK — deliver without adding to the PEL.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for XGroupCtx
impl RefUnwindSafe for XGroupCtx
impl Send for XGroupCtx
impl Sync for XGroupCtx
impl Unpin for XGroupCtx
impl UnsafeUnpin for XGroupCtx
impl UnwindSafe for XGroupCtx
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