pub struct DeleteObjectTaggingInput {
pub bucket: String,
pub expected_bucket_owner: Option<String>,
pub key: String,
pub version_id: Option<String>,
}Expand description
S3 DeleteObjectTaggingInput.
Fields§
§bucket: StringHTTP label (URI path).
expected_bucket_owner: Option<String>HTTP header: x-amz-expected-bucket-owner.
key: StringHTTP label (URI path).
version_id: Option<String>HTTP query: versionId.
Trait Implementations§
Source§impl Clone for DeleteObjectTaggingInput
impl Clone for DeleteObjectTaggingInput
Source§fn clone(&self) -> DeleteObjectTaggingInput
fn clone(&self) -> DeleteObjectTaggingInput
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 DeleteObjectTaggingInput
impl Debug for DeleteObjectTaggingInput
Source§impl Default for DeleteObjectTaggingInput
impl Default for DeleteObjectTaggingInput
Source§fn default() -> DeleteObjectTaggingInput
fn default() -> DeleteObjectTaggingInput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeleteObjectTaggingInput
impl RefUnwindSafe for DeleteObjectTaggingInput
impl Send for DeleteObjectTaggingInput
impl Sync for DeleteObjectTaggingInput
impl Unpin for DeleteObjectTaggingInput
impl UnsafeUnpin for DeleteObjectTaggingInput
impl UnwindSafe for DeleteObjectTaggingInput
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