pub struct LimitCursorPartitionQuery {
pub limit: Option<i32>,
pub cursor: Option<String>,
pub partition: Option<Partition>,
}Expand description
Query with limt, cursor, and partition.
Fields§
§limit: Option<i32>Maximum number of results to return.
cursor: Option<String>Cursor for pagination.
partition: Option<Partition>Partition count and number.
Trait Implementations§
Source§impl Clone for LimitCursorPartitionQuery
impl Clone for LimitCursorPartitionQuery
Source§fn clone(&self) -> LimitCursorPartitionQuery
fn clone(&self) -> LimitCursorPartitionQuery
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 LimitCursorPartitionQuery
impl Debug for LimitCursorPartitionQuery
Source§impl Default for LimitCursorPartitionQuery
impl Default for LimitCursorPartitionQuery
Source§fn default() -> LimitCursorPartitionQuery
fn default() -> LimitCursorPartitionQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LimitCursorPartitionQuery
impl RefUnwindSafe for LimitCursorPartitionQuery
impl Send for LimitCursorPartitionQuery
impl Sync for LimitCursorPartitionQuery
impl Unpin for LimitCursorPartitionQuery
impl UnwindSafe for LimitCursorPartitionQuery
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