pub struct FilesystemObjectRecord {
pub bucket: String,
pub key: String,
pub version_id: String,
pub relative_path: String,
pub ciphertext_sha256: String,
pub ciphertext_len: usize,
}Fields§
§bucket: String§key: String§version_id: String§relative_path: String§ciphertext_sha256: String§ciphertext_len: usizeTrait Implementations§
Source§impl Clone for FilesystemObjectRecord
impl Clone for FilesystemObjectRecord
Source§fn clone(&self) -> FilesystemObjectRecord
fn clone(&self) -> FilesystemObjectRecord
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 FilesystemObjectRecord
impl Debug for FilesystemObjectRecord
Source§impl<'de> Deserialize<'de> for FilesystemObjectRecord
impl<'de> Deserialize<'de> for FilesystemObjectRecord
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
Source§impl PartialEq for FilesystemObjectRecord
impl PartialEq for FilesystemObjectRecord
Source§fn eq(&self, other: &FilesystemObjectRecord) -> bool
fn eq(&self, other: &FilesystemObjectRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FilesystemObjectRecord
impl Serialize for FilesystemObjectRecord
impl Eq for FilesystemObjectRecord
impl StructuralPartialEq for FilesystemObjectRecord
Auto Trait Implementations§
impl Freeze for FilesystemObjectRecord
impl RefUnwindSafe for FilesystemObjectRecord
impl Send for FilesystemObjectRecord
impl Sync for FilesystemObjectRecord
impl Unpin for FilesystemObjectRecord
impl UnsafeUnpin for FilesystemObjectRecord
impl UnwindSafe for FilesystemObjectRecord
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