pub struct SeekEntry {
pub compressed_size: u32,
pub decompressed_size: u32,
pub checksum: Option<u32>,
}Expand description
One seek-table row.
Fields§
§compressed_size: u32Compressed size of this frame (including header/checksum).
decompressed_size: u32Uncompressed size (0 for skippable / empty).
checksum: Option<u32>XXH64 low 32 of uncompressed data, if the table stores checksums.
Trait Implementations§
impl Copy for SeekEntry
impl Eq for SeekEntry
impl StructuralPartialEq for SeekEntry
Auto Trait Implementations§
impl Freeze for SeekEntry
impl RefUnwindSafe for SeekEntry
impl Send for SeekEntry
impl Sync for SeekEntry
impl Unpin for SeekEntry
impl UnsafeUnpin for SeekEntry
impl UnwindSafe for SeekEntry
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