pub struct ObjectVersion(/* private fields */);Expand description
Provider identity for one stored object version.
This is distinct from an ETag. Version-enabled S3-compatible stores can
retain old bytes after a key-only delete and return a version identifier for
the current object. Trine exposes that fact so irreversible reclamation can
reject versioned namespaces instead of mistaking a delete marker for byte
removal.
Implementations§
Trait Implementations§
Source§impl Clone for ObjectVersion
impl Clone for ObjectVersion
Source§fn clone(&self) -> ObjectVersion
fn clone(&self) -> ObjectVersion
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 ObjectVersion
impl Debug for ObjectVersion
impl Eq for ObjectVersion
Source§impl Hash for ObjectVersion
impl Hash for ObjectVersion
Source§impl PartialEq for ObjectVersion
impl PartialEq for ObjectVersion
impl StructuralPartialEq for ObjectVersion
Auto Trait Implementations§
impl Freeze for ObjectVersion
impl RefUnwindSafe for ObjectVersion
impl Send for ObjectVersion
impl Sync for ObjectVersion
impl Unpin for ObjectVersion
impl UnsafeUnpin for ObjectVersion
impl UnwindSafe for ObjectVersion
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