pub struct PortableStorePackage {
pub package_version: u32,
pub exported_at_unix_ms: u64,
pub manifest: SnapshotManifest,
pub records: Vec<PortableRecord>,
}Fields§
§package_version: u32§exported_at_unix_ms: u64§manifest: SnapshotManifest§records: Vec<PortableRecord>Trait Implementations§
Source§impl Clone for PortableStorePackage
impl Clone for PortableStorePackage
Source§fn clone(&self) -> PortableStorePackage
fn clone(&self) -> PortableStorePackage
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 PortableStorePackage
impl Debug for PortableStorePackage
Source§impl<'de> Deserialize<'de> for PortableStorePackage
impl<'de> Deserialize<'de> for PortableStorePackage
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 PortableStorePackage
impl PartialEq for PortableStorePackage
Source§fn eq(&self, other: &PortableStorePackage) -> bool
fn eq(&self, other: &PortableStorePackage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PortableStorePackage
impl Serialize for PortableStorePackage
impl StructuralPartialEq for PortableStorePackage
Auto Trait Implementations§
impl Freeze for PortableStorePackage
impl RefUnwindSafe for PortableStorePackage
impl Send for PortableStorePackage
impl Sync for PortableStorePackage
impl Unpin for PortableStorePackage
impl UnsafeUnpin for PortableStorePackage
impl UnwindSafe for PortableStorePackage
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