pub struct BrzArchiveHeader {
pub version: FormatVersion,
pub index_method: CompressionMethod,
pub index_size_uncompressed: i32,
pub index_size_compressed: i32,
pub index_hash: [u8; 32],
}Fields§
§version: FormatVersion§index_method: CompressionMethod§index_size_uncompressed: i32§index_size_compressed: i32§index_hash: [u8; 32]A blake 3 hash of decompressed index data.
Implementations§
Auto Trait Implementations§
impl Freeze for BrzArchiveHeader
impl RefUnwindSafe for BrzArchiveHeader
impl Send for BrzArchiveHeader
impl Sync for BrzArchiveHeader
impl Unpin for BrzArchiveHeader
impl UnsafeUnpin for BrzArchiveHeader
impl UnwindSafe for BrzArchiveHeader
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