Struct rusty_s3::actions::DeleteObjects
source · [−]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
sourceimpl<'a, I> DeleteObjects<'a, I>
impl<'a, I> DeleteObjects<'a, I>
sourceimpl<'a, I> DeleteObjects<'a, I> where
I: Iterator<Item = &'a ObjectIdentifier>,
impl<'a, I> DeleteObjects<'a, I> where
I: Iterator<Item = &'a ObjectIdentifier>,
pub fn body_with_md5(self) -> (String, String)
Trait Implementations
sourceimpl<'a, I: Clone> Clone for DeleteObjects<'a, I>
impl<'a, I: Clone> Clone for DeleteObjects<'a, I>
sourcefn clone(&self) -> DeleteObjects<'a, I>
fn clone(&self) -> DeleteObjects<'a, I>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<'a, I: Debug> Debug for DeleteObjects<'a, I>
impl<'a, I: Debug> Debug for DeleteObjects<'a, I>
sourceimpl<'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
sourcefn 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
sourcefn 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
sourcefn sign_with_time(&self, expires_in: Duration, time: &OffsetDateTime) -> Url
fn sign_with_time(&self, expires_in: Duration, time: &OffsetDateTime) -> Url
Takes the time at which the URL should be signed Used for testing purposes Read more
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more