pub enum CursorPos {
Begin,
End,
UnixTimeStamp(i64),
}
Variants§
Begin
The beginning cursor of the shard.
End
The end cursor of the shard currently.
UnixTimeStamp(i64)
Unix timestamp in seconds, e.g., 1617235200.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CursorPos
impl RefUnwindSafe for CursorPos
impl Send for CursorPos
impl Sync for CursorPos
impl Unpin for CursorPos
impl UnwindSafe for CursorPos
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