pub struct DeleteObjectFailure {
pub key: String,
pub version_id: Option<String>,
pub code: Option<String>,
pub message: Option<String>,
}Expand description
A per-object failure returned by a multi-object delete request.
Fields§
§key: StringObject key that could not be deleted.
version_id: Option<String>Requested version, when present.
code: Option<String>S3 error code, when provided.
message: Option<String>Backend error message, when provided.
Trait Implementations§
Source§impl Clone for DeleteObjectFailure
impl Clone for DeleteObjectFailure
Source§fn clone(&self) -> DeleteObjectFailure
fn clone(&self) -> DeleteObjectFailure
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 DeleteObjectFailure
impl Debug for DeleteObjectFailure
Source§impl<'de> Deserialize<'de> for DeleteObjectFailure
impl<'de> Deserialize<'de> for DeleteObjectFailure
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DeleteObjectFailure
Source§impl PartialEq for DeleteObjectFailure
impl PartialEq for DeleteObjectFailure
Source§impl Serialize for DeleteObjectFailure
impl Serialize for DeleteObjectFailure
impl StructuralPartialEq for DeleteObjectFailure
Auto Trait Implementations§
impl Freeze for DeleteObjectFailure
impl RefUnwindSafe for DeleteObjectFailure
impl Send for DeleteObjectFailure
impl Sync for DeleteObjectFailure
impl Unpin for DeleteObjectFailure
impl UnsafeUnpin for DeleteObjectFailure
impl UnwindSafe for DeleteObjectFailure
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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