pub struct DeleteItemsOutput {
pub deleted_items: Option<Vec<String>>,
pub failed_deleted_items: Option<HashMap<String, String>>,
pub path: Option<String>,
}Fields§
§deleted_items: Option<Vec<String>>§failed_deleted_items: Option<HashMap<String, String>>§path: Option<String>Implementations§
Source§impl DeleteItemsOutput
impl DeleteItemsOutput
pub fn new() -> DeleteItemsOutput
Trait Implementations§
Source§impl Clone for DeleteItemsOutput
impl Clone for DeleteItemsOutput
Source§fn clone(&self) -> DeleteItemsOutput
fn clone(&self) -> DeleteItemsOutput
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 DeleteItemsOutput
impl Debug for DeleteItemsOutput
Source§impl Default for DeleteItemsOutput
impl Default for DeleteItemsOutput
Source§fn default() -> DeleteItemsOutput
fn default() -> DeleteItemsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteItemsOutput
impl<'de> Deserialize<'de> for DeleteItemsOutput
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 DeleteItemsOutput
impl PartialEq for DeleteItemsOutput
Source§fn eq(&self, other: &DeleteItemsOutput) -> bool
fn eq(&self, other: &DeleteItemsOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DeleteItemsOutput
impl Serialize for DeleteItemsOutput
impl StructuralPartialEq for DeleteItemsOutput
Auto Trait Implementations§
impl Freeze for DeleteItemsOutput
impl RefUnwindSafe for DeleteItemsOutput
impl Send for DeleteItemsOutput
impl Sync for DeleteItemsOutput
impl Unpin for DeleteItemsOutput
impl UnsafeUnpin for DeleteItemsOutput
impl UnwindSafe for DeleteItemsOutput
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