pub struct LimitCursorQuery {
pub limit: Option<i32>,
pub cursor: Option<String>,
}Expand description
Simple query with limit and cursor.
Fields§
§limit: Option<i32>Maximum number of results to return.
cursor: Option<String>Cursor for pagination.
Trait Implementations§
Source§impl Clone for LimitCursorQuery
impl Clone for LimitCursorQuery
Source§fn clone(&self) -> LimitCursorQuery
fn clone(&self) -> LimitCursorQuery
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LimitCursorQuery
impl Debug for LimitCursorQuery
Source§impl Default for LimitCursorQuery
impl Default for LimitCursorQuery
Source§fn default() -> LimitCursorQuery
fn default() -> LimitCursorQuery
Returns the “default value” for a type. Read more
Source§impl IntoParams for LimitCursorQuery
impl IntoParams for LimitCursorQuery
Auto Trait Implementations§
impl Freeze for LimitCursorQuery
impl RefUnwindSafe for LimitCursorQuery
impl Send for LimitCursorQuery
impl Sync for LimitCursorQuery
impl Unpin for LimitCursorQuery
impl UnwindSafe for LimitCursorQuery
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