pub struct StorageObject {
pub key: String,
pub object_id: String,
pub size_bytes: u64,
pub sha256: String,
pub content_type: Option<String>,
pub committed_at_ms: u64,
}Fields§
§key: String§object_id: String§size_bytes: u64§sha256: String§content_type: Option<String>§committed_at_ms: u64Trait Implementations§
Source§impl Clone for StorageObject
impl Clone for StorageObject
Source§fn clone(&self) -> StorageObject
fn clone(&self) -> StorageObject
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 StorageObject
impl Debug for StorageObject
Source§impl<'de> Deserialize<'de> for StorageObject
impl<'de> Deserialize<'de> for StorageObject
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for StorageObject
Source§impl PartialEq for StorageObject
impl PartialEq for StorageObject
Source§impl Serialize for StorageObject
impl Serialize for StorageObject
impl StructuralPartialEq for StorageObject
Auto Trait Implementations§
impl Freeze for StorageObject
impl RefUnwindSafe for StorageObject
impl Send for StorageObject
impl Sync for StorageObject
impl Unpin for StorageObject
impl UnsafeUnpin for StorageObject
impl UnwindSafe for StorageObject
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