pub struct MetaPackage {
pub meta_package_id: String,
pub created: u64,
pub size: u64,
pub content: Vec<Package>,
}Expand description
The meta data package describes all details to store and retrive content.
Fields§
§meta_package_id: StringIdentifier for the metadata package.
created: u64Creation timestamp (duration since Unix Epoch as seconds).
size: u64Total size of the content.
content: Vec<Package>Content packages.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MetaPackage
impl RefUnwindSafe for MetaPackage
impl Send for MetaPackage
impl Sync for MetaPackage
impl Unpin for MetaPackage
impl UnwindSafe for MetaPackage
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