pub struct UpdatedAtCursorQuery {
pub after_updated_at: Option<DateTime<Utc>>,
pub after_id: Option<i64>,
}Expand description
Cursor query for resources ordered by update time and numeric id.
Fields§
§after_updated_at: Option<DateTime<Utc>>Cursor update timestamp.
after_id: Option<i64>Cursor numeric id used as a stable tie breaker.
Trait Implementations§
Source§impl Clone for UpdatedAtCursorQuery
impl Clone for UpdatedAtCursorQuery
Source§fn clone(&self) -> UpdatedAtCursorQuery
fn clone(&self) -> UpdatedAtCursorQuery
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 UpdatedAtCursorQuery
impl ComposeSchema for UpdatedAtCursorQuery
Source§impl Debug for UpdatedAtCursorQuery
impl Debug for UpdatedAtCursorQuery
Source§impl Default for UpdatedAtCursorQuery
impl Default for UpdatedAtCursorQuery
Source§fn default() -> UpdatedAtCursorQuery
fn default() -> UpdatedAtCursorQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdatedAtCursorQuery
impl<'de> Deserialize<'de> for UpdatedAtCursorQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl IntoParams for UpdatedAtCursorQuery
impl IntoParams for UpdatedAtCursorQuery
Source§impl ToSchema for UpdatedAtCursorQuery
impl ToSchema for UpdatedAtCursorQuery
impl Copy for UpdatedAtCursorQuery
Auto Trait Implementations§
impl Freeze for UpdatedAtCursorQuery
impl RefUnwindSafe for UpdatedAtCursorQuery
impl Send for UpdatedAtCursorQuery
impl Sync for UpdatedAtCursorQuery
impl Unpin for UpdatedAtCursorQuery
impl UnsafeUnpin for UpdatedAtCursorQuery
impl UnwindSafe for UpdatedAtCursorQuery
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