pub struct DeleteObjectOutput {
pub delete_marker: Option<DeleteMarker>,
pub request_charged: Option<RequestCharged>,
pub version_id: Option<ObjectVersionId>,
}Fields§
§delete_marker: Option<DeleteMarker>Indicates whether the specified object version that was permanently deleted was (true) or was not (false) a delete marker before deletion. In a simple DELETE, this header indicates whether (true) or not (false) the current version of the object is a delete marker. To learn more about delete markers, see Working with delete markers.
This functionality is not supported for directory buckets.
request_charged: Option<RequestCharged>§version_id: Option<ObjectVersionId>Returns the version ID of the delete marker created as a result of the DELETE operation.
This functionality is not supported for directory buckets.
Trait Implementations§
Source§impl Clone for DeleteObjectOutput
impl Clone for DeleteObjectOutput
Source§fn clone(&self) -> DeleteObjectOutput
fn clone(&self) -> DeleteObjectOutput
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 DeleteObjectOutput
impl Debug for DeleteObjectOutput
Source§impl Default for DeleteObjectOutput
impl Default for DeleteObjectOutput
Source§fn default() -> DeleteObjectOutput
fn default() -> DeleteObjectOutput
Returns the “default value” for a type. Read more
Source§impl DtoExt for DeleteObjectOutput
impl DtoExt for DeleteObjectOutput
Source§fn ignore_empty_strings(&mut self)
fn ignore_empty_strings(&mut self)
Modifies all empty string fields from
Some("") to NoneSource§impl PartialEq for DeleteObjectOutput
impl PartialEq for DeleteObjectOutput
Source§fn eq(&self, other: &DeleteObjectOutput) -> bool
fn eq(&self, other: &DeleteObjectOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteObjectOutput
Auto Trait Implementations§
impl Freeze for DeleteObjectOutput
impl RefUnwindSafe for DeleteObjectOutput
impl Send for DeleteObjectOutput
impl Sync for DeleteObjectOutput
impl Unpin for DeleteObjectOutput
impl UnsafeUnpin for DeleteObjectOutput
impl UnwindSafe for DeleteObjectOutput
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