pub struct DateTimeStringCursor {
pub value: DateTime<Utc>,
pub id: String,
}Expand description
Timestamp plus string id cursor for resources sorted by time and then string id.
Fields§
§value: DateTime<Utc>Cursor timestamp.
id: StringCursor string id used as a stable tie breaker.
Trait Implementations§
Source§impl Clone for DateTimeStringCursor
impl Clone for DateTimeStringCursor
Source§fn clone(&self) -> DateTimeStringCursor
fn clone(&self) -> DateTimeStringCursor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for DateTimeStringCursor
impl ComposeSchema for DateTimeStringCursor
Source§impl Debug for DateTimeStringCursor
impl Debug for DateTimeStringCursor
Source§impl Serialize for DateTimeStringCursor
impl Serialize for DateTimeStringCursor
Auto Trait Implementations§
impl Freeze for DateTimeStringCursor
impl RefUnwindSafe for DateTimeStringCursor
impl Send for DateTimeStringCursor
impl Sync for DateTimeStringCursor
impl Unpin for DateTimeStringCursor
impl UnsafeUnpin for DateTimeStringCursor
impl UnwindSafe for DateTimeStringCursor
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