pub struct TransactGetItem {
pub get: Get,
}
Expand description
Specifies an item to be retrieved as part of the transaction.
Fields§
§get: Get
Contains the primary key that identifies the item to get, together with the name of the table that contains the item, and optionally the specific attributes of the item to retrieve.
Trait Implementations§
Source§impl Clone for TransactGetItem
impl Clone for TransactGetItem
Source§fn clone(&self) -> TransactGetItem
fn clone(&self) -> TransactGetItem
Returns a copy 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 TransactGetItem
impl Debug for TransactGetItem
Source§impl Default for TransactGetItem
impl Default for TransactGetItem
Source§fn default() -> TransactGetItem
fn default() -> TransactGetItem
Returns the “default value” for a type. Read more
Source§impl PartialEq for TransactGetItem
impl PartialEq for TransactGetItem
Source§impl Serialize for TransactGetItem
impl Serialize for TransactGetItem
impl StructuralPartialEq for TransactGetItem
Auto Trait Implementations§
impl Freeze for TransactGetItem
impl RefUnwindSafe for TransactGetItem
impl Send for TransactGetItem
impl Sync for TransactGetItem
impl Unpin for TransactGetItem
impl UnwindSafe for TransactGetItem
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