pub struct DeleteItemOutput {
pub deletion_date: Option<String>,
pub item_id: Option<i64>,
pub item_name: Option<String>,
pub version_deleted: Option<i32>,
}Fields§
§deletion_date: Option<String>§item_id: Option<i64>§item_name: Option<String>§version_deleted: Option<i32>Implementations§
Source§impl DeleteItemOutput
impl DeleteItemOutput
pub fn new() -> DeleteItemOutput
Trait Implementations§
Source§impl Clone for DeleteItemOutput
impl Clone for DeleteItemOutput
Source§fn clone(&self) -> DeleteItemOutput
fn clone(&self) -> DeleteItemOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DeleteItemOutput
impl Debug for DeleteItemOutput
Source§impl Default for DeleteItemOutput
impl Default for DeleteItemOutput
Source§fn default() -> DeleteItemOutput
fn default() -> DeleteItemOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteItemOutput
impl<'de> Deserialize<'de> for DeleteItemOutput
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
Source§impl PartialEq for DeleteItemOutput
impl PartialEq for DeleteItemOutput
Source§fn eq(&self, other: &DeleteItemOutput) -> bool
fn eq(&self, other: &DeleteItemOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DeleteItemOutput
impl Serialize for DeleteItemOutput
impl StructuralPartialEq for DeleteItemOutput
Auto Trait Implementations§
impl Freeze for DeleteItemOutput
impl RefUnwindSafe for DeleteItemOutput
impl Send for DeleteItemOutput
impl Sync for DeleteItemOutput
impl Unpin for DeleteItemOutput
impl UnsafeUnpin for DeleteItemOutput
impl UnwindSafe for DeleteItemOutput
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