pub struct FilesystemStoreManifest {
pub schema_version: u32,
pub snapshot: RuntimeSnapshot,
pub objects: Vec<FilesystemObjectRecord>,
}Fields§
§schema_version: u32§snapshot: RuntimeSnapshot§objects: Vec<FilesystemObjectRecord>Trait Implementations§
Source§impl Clone for FilesystemStoreManifest
impl Clone for FilesystemStoreManifest
Source§fn clone(&self) -> FilesystemStoreManifest
fn clone(&self) -> FilesystemStoreManifest
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 FilesystemStoreManifest
impl Debug for FilesystemStoreManifest
Source§impl<'de> Deserialize<'de> for FilesystemStoreManifest
impl<'de> Deserialize<'de> for FilesystemStoreManifest
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
Auto Trait Implementations§
impl Freeze for FilesystemStoreManifest
impl RefUnwindSafe for FilesystemStoreManifest
impl Send for FilesystemStoreManifest
impl Sync for FilesystemStoreManifest
impl Unpin for FilesystemStoreManifest
impl UnsafeUnpin for FilesystemStoreManifest
impl UnwindSafe for FilesystemStoreManifest
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