pub struct ObjectVersion {
pub checksum_algorithm: Vec<ChecksumAlgorithm>,
pub checksum_type: Option<ChecksumType>,
pub e_tag: Option<String>,
pub is_latest: Option<bool>,
pub key: Option<String>,
pub last_modified: Option<DateTime<Utc>>,
pub owner: Option<Owner>,
pub restore_status: Option<RestoreStatus>,
pub size: Option<i64>,
pub storage_class: Option<ObjectVersionStorageClass>,
pub version_id: Option<String>,
}Expand description
S3 ObjectVersion.
Fields§
§checksum_algorithm: Vec<ChecksumAlgorithm>§checksum_type: Option<ChecksumType>§e_tag: Option<String>§is_latest: Option<bool>§key: Option<String>§last_modified: Option<DateTime<Utc>>§owner: Option<Owner>§restore_status: Option<RestoreStatus>§size: Option<i64>§storage_class: Option<ObjectVersionStorageClass>§version_id: Option<String>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
Source§impl Default for ObjectVersion
impl Default for ObjectVersion
Source§fn default() -> ObjectVersion
fn default() -> ObjectVersion
Returns the “default value” for a type. Read more
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