pub struct SelectStatement {
pub table_name: String,
pub index_name: Option<String>,
pub select_list: SelectList,
pub where_clause: Option<WhereClause>,
pub order_by: Option<OrderBy>,
pub limit: Option<usize>,
pub offset: Option<usize>,
}Expand description
SELECT statement
Fields§
§table_name: StringTable name (DynamoDB table)
index_name: Option<String>Optional index name (for LSI/GSI queries)
select_list: SelectListAttributes to select (None = SELECT *)
where_clause: Option<WhereClause>WHERE clause conditions
order_by: Option<OrderBy>ORDER BY clause
limit: Option<usize>LIMIT clause (max number of items to return)
offset: Option<usize>OFFSET clause (number of items to skip)
Trait Implementations§
Source§impl Clone for SelectStatement
impl Clone for SelectStatement
Source§fn clone(&self) -> SelectStatement
fn clone(&self) -> SelectStatement
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 SelectStatement
impl Debug for SelectStatement
Source§impl PartialEq for SelectStatement
impl PartialEq for SelectStatement
impl StructuralPartialEq for SelectStatement
Auto Trait Implementations§
impl Freeze for SelectStatement
impl RefUnwindSafe for SelectStatement
impl Send for SelectStatement
impl Sync for SelectStatement
impl Unpin for SelectStatement
impl UnwindSafe for SelectStatement
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