pub struct RetrieveAllPartitionedQuery {
pub min_last_updated_time: Option<i64>,
pub max_last_updated_time: Option<i64>,
pub number_of_cursors: Option<i32>,
pub columns: Option<Vec<String>>,
pub limit: Option<i32>,
}Expand description
Query for retrieving all rows using partitioned reads from a table.
Fields§
§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.
number_of_cursors: Option<i32>Requested number of parallel reads.
columns: Option<Vec<String>>List of columns to return. Can be left out to return all columns.
limit: Option<i32>Maximum number of rows to return per request.
Trait Implementations§
Source§impl Clone for RetrieveAllPartitionedQuery
impl Clone for RetrieveAllPartitionedQuery
Source§fn clone(&self) -> RetrieveAllPartitionedQuery
fn clone(&self) -> RetrieveAllPartitionedQuery
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 RetrieveAllPartitionedQuery
impl Debug for RetrieveAllPartitionedQuery
Source§impl Default for RetrieveAllPartitionedQuery
impl Default for RetrieveAllPartitionedQuery
Source§fn default() -> RetrieveAllPartitionedQuery
fn default() -> RetrieveAllPartitionedQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RetrieveAllPartitionedQuery
impl RefUnwindSafe for RetrieveAllPartitionedQuery
impl Send for RetrieveAllPartitionedQuery
impl Sync for RetrieveAllPartitionedQuery
impl Unpin for RetrieveAllPartitionedQuery
impl UnwindSafe for RetrieveAllPartitionedQuery
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