pub struct PackMeta {
pub root: String,
pub timestamp: u64,
pub heft_version: String,
pub file_count: u64,
pub dir_count: u64,
pub size_actual: u64,
}Expand description
Metadata stored in the .heft file header (readable without decompression).
Fields§
§root: String§timestamp: u64§heft_version: String§file_count: u64§dir_count: u64§size_actual: u64Trait Implementations§
Source§impl<'de> Deserialize<'de> for PackMeta
impl<'de> Deserialize<'de> for PackMeta
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 PackMeta
impl RefUnwindSafe for PackMeta
impl Send for PackMeta
impl Sync for PackMeta
impl Unpin for PackMeta
impl UnsafeUnpin for PackMeta
impl UnwindSafe for PackMeta
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