pub struct InventoryRow {
pub bucket: String,
pub key: String,
pub version_id: Option<String>,
pub is_latest: bool,
pub is_delete_marker: bool,
pub size: u64,
pub last_modified: DateTime<Utc>,
pub etag: String,
pub storage_class: String,
pub encryption_status: String,
}Expand description
One row in the rendered CSV. Headers are fixed (see render_csv).
Fields§
§bucket: String§key: String§version_id: Option<String>§is_latest: bool§is_delete_marker: bool§size: u64§last_modified: DateTime<Utc>§etag: String§storage_class: String§encryption_status: String"SSE-S4" / "SSE-KMS" / "SSE-C" / "NOT-SSE". Free-form so the
caller can extend without forcing a new variant here.
Trait Implementations§
Source§impl Clone for InventoryRow
impl Clone for InventoryRow
Source§fn clone(&self) -> InventoryRow
fn clone(&self) -> InventoryRow
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 InventoryRow
impl Debug for InventoryRow
Source§impl PartialEq for InventoryRow
impl PartialEq for InventoryRow
Source§fn eq(&self, other: &InventoryRow) -> bool
fn eq(&self, other: &InventoryRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for InventoryRow
impl StructuralPartialEq for InventoryRow
Auto Trait Implementations§
impl Freeze for InventoryRow
impl RefUnwindSafe for InventoryRow
impl Send for InventoryRow
impl Sync for InventoryRow
impl Unpin for InventoryRow
impl UnsafeUnpin for InventoryRow
impl UnwindSafe for InventoryRow
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.