Struct object::read::CompressedFileRange [−][src]
pub struct CompressedFileRange {
pub format: CompressionFormat,
pub offset: u64,
pub compressed_size: u64,
pub uncompressed_size: u64,
}Expand description
A range in a file that may be compressed.
Fields
format: CompressionFormatThe data compression format.
offset: u64The file offset of the compressed data.
compressed_size: u64The compressed data size.
uncompressed_size: u64The uncompressed data size.
Implementations
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for CompressedFileRange
impl Send for CompressedFileRange
impl Sync for CompressedFileRange
impl Unpin for CompressedFileRange
impl UnwindSafe for CompressedFileRange
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.