pub struct BulkObjectDeleteEntry {
pub bucket: String,
pub key: String,
pub version_id: Option<String>,
pub delete_marker: bool,
pub delete_marker_version_id: Option<String>,
}Fields§
§bucket: String§key: String§version_id: Option<String>§delete_marker: bool§delete_marker_version_id: Option<String>Trait Implementations§
Source§impl Clone for BulkObjectDeleteEntry
impl Clone for BulkObjectDeleteEntry
Source§fn clone(&self) -> BulkObjectDeleteEntry
fn clone(&self) -> BulkObjectDeleteEntry
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 BulkObjectDeleteEntry
impl Debug for BulkObjectDeleteEntry
Source§impl PartialEq for BulkObjectDeleteEntry
impl PartialEq for BulkObjectDeleteEntry
Source§fn eq(&self, other: &BulkObjectDeleteEntry) -> bool
fn eq(&self, other: &BulkObjectDeleteEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BulkObjectDeleteEntry
impl StructuralPartialEq for BulkObjectDeleteEntry
Auto Trait Implementations§
impl Freeze for BulkObjectDeleteEntry
impl RefUnwindSafe for BulkObjectDeleteEntry
impl Send for BulkObjectDeleteEntry
impl Sync for BulkObjectDeleteEntry
impl Unpin for BulkObjectDeleteEntry
impl UnsafeUnpin for BulkObjectDeleteEntry
impl UnwindSafe for BulkObjectDeleteEntry
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