pub struct GetItemRequest {
pub table_name: String,
pub key: Vec<KeyAttribute>,
pub consistent_read: bool,
pub return_consumed_capacity: ReturnConsumedCapacity,
pub projection_expression: Option<String>,
pub expression_attribute_names: Option<Vec<(String, String)>>,
}Fields§
§table_name: String§key: Vec<KeyAttribute>§consistent_read: bool§return_consumed_capacity: ReturnConsumedCapacity§projection_expression: Option<String>§expression_attribute_names: Option<Vec<(String, String)>>Trait Implementations§
Source§impl Clone for GetItemRequest
impl Clone for GetItemRequest
Source§fn clone(&self) -> GetItemRequest
fn clone(&self) -> GetItemRequest
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 moreAuto Trait Implementations§
impl Freeze for GetItemRequest
impl RefUnwindSafe for GetItemRequest
impl Send for GetItemRequest
impl Sync for GetItemRequest
impl Unpin for GetItemRequest
impl UnwindSafe for GetItemRequest
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