pub struct BZip2;
Available on crate features
compression
and bzip
only.Expand description
A CompressionFormat
corresponding to the bzip compression algorithm.
Implemented using the bzip2
crate.
Trait Implementations§
Source§impl CompressionFormat for BZip2
impl CompressionFormat for BZip2
Source§type Encoder<W: Write> = BzEncoder<W>
type Encoder<W: Write> = BzEncoder<W>
The encoder wrapper type that compresses data sent to the contained writer.
Source§type Decoder<R: Read> = BzDecoder<R>
type Decoder<R: Read> = BzDecoder<R>
The decoder wrapper type that decompresses data sent from the contained reader.
Source§fn encode_writer<W: Write>(&self, writer: W, level: u32) -> Self::Encoder<W>
fn encode_writer<W: Write>(&self, writer: W, level: u32) -> Self::Encoder<W>
Wraps a writer that takes uncompressed data, producing a new writer that outputs compressed data.
Source§fn decode_reader<R: Read>(&self, reader: R) -> Self::Decoder<R>
fn decode_reader<R: Read>(&self, reader: R) -> Self::Decoder<R>
Wraps a reader that takes compressed data, producing a new reader that outputs uncompressed data.
Source§impl CompressionFormatLevels for BZip2
impl CompressionFormatLevels for BZip2
Source§const COMPRESSION_LEVEL_NONE: u32 = 0u32
const COMPRESSION_LEVEL_NONE: u32 = 0u32
The level for no compression.
Source§const COMPRESSION_LEVEL_FAST: u32 = 1u32
const COMPRESSION_LEVEL_FAST: u32 = 1u32
The level for ‘fast’ compression.
Source§const COMPRESSION_LEVEL_BEST: u32 = 9u32
const COMPRESSION_LEVEL_BEST: u32 = 9u32
The level for ‘best’ compression.
Source§const COMPRESSION_LEVEL_DEFAULT: u32 = 6u32
const COMPRESSION_LEVEL_DEFAULT: u32 = 6u32
The level for default compression.
impl Copy for BZip2
impl Eq for BZip2
impl StructuralPartialEq for BZip2
Auto Trait Implementations§
impl Freeze for BZip2
impl RefUnwindSafe for BZip2
impl Send for BZip2
impl Sync for BZip2
impl Unpin for BZip2
impl UnwindSafe for BZip2
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.