pub struct DeleteObjectsOutput {
pub deleted: Option<Vec<DeletedObject>>,
pub errors: Option<Vec<S3Error>>,
pub request_charged: Option<String>,
}Fields§
§deleted: Option<Vec<DeletedObject>>Container element for a successful delete. It identifies the object that was successfully deleted.
errors: Option<Vec<S3Error>>Container for a failed delete operation that describes the object that Amazon S3 attempted to delete and the error it encountered.
request_charged: Option<String>Trait Implementations§
Source§impl Clone for DeleteObjectsOutput
impl Clone for DeleteObjectsOutput
Source§fn clone(&self) -> DeleteObjectsOutput
fn clone(&self) -> DeleteObjectsOutput
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 DeleteObjectsOutput
impl Debug for DeleteObjectsOutput
Source§impl Default for DeleteObjectsOutput
impl Default for DeleteObjectsOutput
Source§fn default() -> DeleteObjectsOutput
fn default() -> DeleteObjectsOutput
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteObjectsOutput
impl PartialEq for DeleteObjectsOutput
impl StructuralPartialEq for DeleteObjectsOutput
Auto Trait Implementations§
impl Freeze for DeleteObjectsOutput
impl RefUnwindSafe for DeleteObjectsOutput
impl Send for DeleteObjectsOutput
impl Sync for DeleteObjectsOutput
impl Unpin for DeleteObjectsOutput
impl UnwindSafe for DeleteObjectsOutput
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