pub struct RetrieveRowsQuery {
pub limit: Option<i32>,
pub columns: Option<Vec<String>>,
pub cursor: Option<String>,
pub min_last_updated_time: Option<i64>,
pub max_last_updated_time: Option<i64>,
}Expand description
Query for retrieving raw rows from a table.
Fields§
§limit: Option<i32>Maximum number of rows to return.
columns: Option<Vec<String>>List of columns to return. Can be left out to return all columns.
cursor: Option<String>Optional cursor for pagination.
min_last_updated_time: Option<i64>Minimum last updated time, in millisecond since epoch.
max_last_updated_time: Option<i64>Maximum last updated time, in milliseconds since epoch.
Trait Implementations§
Source§impl Clone for RetrieveRowsQuery
impl Clone for RetrieveRowsQuery
Source§fn clone(&self) -> RetrieveRowsQuery
fn clone(&self) -> RetrieveRowsQuery
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 RetrieveRowsQuery
impl Debug for RetrieveRowsQuery
Source§impl Default for RetrieveRowsQuery
impl Default for RetrieveRowsQuery
Source§fn default() -> RetrieveRowsQuery
fn default() -> RetrieveRowsQuery
Returns the “default value” for a type. Read more
Source§impl IntoParams for RetrieveRowsQuery
impl IntoParams for RetrieveRowsQuery
Source§impl Serialize for RetrieveRowsQuery
impl Serialize for RetrieveRowsQuery
Source§impl SetCursor for RetrieveRowsQuery
impl SetCursor for RetrieveRowsQuery
Source§fn set_cursor(&mut self, cursor: Option<String>)
fn set_cursor(&mut self, cursor: Option<String>)
Set cursor to the given value.
Auto Trait Implementations§
impl Freeze for RetrieveRowsQuery
impl RefUnwindSafe for RetrieveRowsQuery
impl Send for RetrieveRowsQuery
impl Sync for RetrieveRowsQuery
impl Unpin for RetrieveRowsQuery
impl UnwindSafe for RetrieveRowsQuery
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