pub enum From {
New,
Pending(Id),
}Expand description
What XREADGROUP was asked for.
Variants§
New
>, meaning entries no consumer in this group has been given yet.
Pending(Id)
An ID, meaning what this consumer is already holding above that ID.
Redis counts this as a real delivery, so the entries come back with their delivery time reset and their count up by one.
Trait Implementations§
impl Copy for From
impl Eq for From
impl StructuralPartialEq for From
Auto Trait Implementations§
impl Freeze for From
impl RefUnwindSafe for From
impl Send for From
impl Sync for From
impl Unpin for From
impl UnsafeUnpin for From
impl UnwindSafe for From
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