pub struct StorageRow {
pub category: StorageCategory,
pub size_bytes: u64,
pub item_count: u64,
pub updated_at: String,
}Expand description
One accounting row per StorageCategory.
Fields§
§category: StorageCategory§size_bytes: u64§item_count: u64§updated_at: StringTrait Implementations§
Source§impl Clone for StorageRow
impl Clone for StorageRow
Source§fn clone(&self) -> StorageRow
fn clone(&self) -> StorageRow
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 moreAuto Trait Implementations§
impl Freeze for StorageRow
impl RefUnwindSafe for StorageRow
impl Send for StorageRow
impl Sync for StorageRow
impl Unpin for StorageRow
impl UnsafeUnpin for StorageRow
impl UnwindSafe for StorageRow
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