pub struct DeleteObjects<'a, I> { /* private fields */ }Expand description
Delete multiple objects from a bucket using a single POST request.
Find out more about DeleteObjects from the AWS API Reference
Implementations§
Source§impl<'a, I> DeleteObjects<'a, I>
impl<'a, I> DeleteObjects<'a, I>
Source§impl<'a, I> DeleteObjects<'a, I>where
I: Iterator<Item = &'a ObjectIdentifier>,
impl<'a, I> DeleteObjects<'a, I>where
I: Iterator<Item = &'a ObjectIdentifier>,
Sourcepub fn body_with_md5(self) -> (String, String)
pub fn body_with_md5(self) -> (String, String)
Trait Implementations§
Source§impl<'a, I: Clone> Clone for DeleteObjects<'a, I>
impl<'a, I: Clone> Clone for DeleteObjects<'a, I>
Source§fn clone(&self) -> DeleteObjects<'a, I>
fn clone(&self) -> DeleteObjects<'a, I>
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<'a, I: Debug> Debug for DeleteObjects<'a, I>
impl<'a, I: Debug> Debug for DeleteObjects<'a, I>
Source§impl<'a, I> S3Action<'a> for DeleteObjects<'a, I>where
I: Iterator<Item = &'a ObjectIdentifier>,
impl<'a, I> S3Action<'a> for DeleteObjects<'a, I>where
I: Iterator<Item = &'a ObjectIdentifier>,
const METHOD: Method = Method::Post
Source§fn query_mut(&mut self) -> &mut Map<'a>
fn query_mut(&mut self) -> &mut Map<'a>
Get a mutable reference to the query string of this action
Source§fn headers_mut(&mut self) -> &mut Map<'a>
fn headers_mut(&mut self) -> &mut Map<'a>
Get a mutable reference to the signed headers of this action Read more
Auto Trait Implementations§
impl<'a, I> Freeze for DeleteObjects<'a, I>where
I: Freeze,
impl<'a, I> RefUnwindSafe for DeleteObjects<'a, I>where
I: RefUnwindSafe,
impl<'a, I> Send for DeleteObjects<'a, I>where
I: Send,
impl<'a, I> Sync for DeleteObjects<'a, I>where
I: Sync,
impl<'a, I> Unpin for DeleteObjects<'a, I>where
I: Unpin,
impl<'a, I> UnwindSafe for DeleteObjects<'a, I>where
I: UnwindSafe,
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