pub enum Start {
Last,
At(Id),
}Expand description
Where a group’s bookmark is being put, which is XGROUP CREATE and SETID.
Variants§
Last
$, the last ID the stream has handed out, so the group sees only what
arrives after it was made.
At(Id)
An ID, usually 0, so the group reads the stream from there.
Trait Implementations§
impl Copy for Start
impl Eq for Start
impl StructuralPartialEq for Start
Auto Trait Implementations§
impl Freeze for Start
impl RefUnwindSafe for Start
impl Send for Start
impl Sync for Start
impl Unpin for Start
impl UnsafeUnpin for Start
impl UnwindSafe for Start
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