pub struct GetItemOutput {
pub item: Option<HashMap<String, AttributeValue>>,
pub consumed_capacity: Option<ConsumedCapacity>,
}Expand description
Output for the GetItem operation.
Fields§
§item: Option<HashMap<String, AttributeValue>>A map of attribute names to AttributeValue objects for the retrieved
item. Returns None if the item does not exist.
consumed_capacity: Option<ConsumedCapacity>The capacity units consumed by the operation.
Trait Implementations§
Source§impl Clone for GetItemOutput
impl Clone for GetItemOutput
Source§fn clone(&self) -> GetItemOutput
fn clone(&self) -> GetItemOutput
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 GetItemOutput
impl Debug for GetItemOutput
Source§impl Default for GetItemOutput
impl Default for GetItemOutput
Source§fn default() -> GetItemOutput
fn default() -> GetItemOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetItemOutput
impl<'de> Deserialize<'de> for GetItemOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetItemOutput
impl RefUnwindSafe for GetItemOutput
impl Send for GetItemOutput
impl Sync for GetItemOutput
impl Unpin for GetItemOutput
impl UnsafeUnpin for GetItemOutput
impl UnwindSafe for GetItemOutput
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