Struct libflate::lz77::DefaultLz77Encoder
source · pub struct DefaultLz77Encoder { /* private fields */ }
Expand description
A Lz77Encode
implementation used by default.
Implementations§
source§impl DefaultLz77Encoder
impl DefaultLz77Encoder
sourcepub fn new() -> DefaultLz77Encoder
pub fn new() -> DefaultLz77Encoder
Makes a new encoder instance.
§Examples
use libflate::deflate;
use libflate::lz77::{self, Lz77Encode, DefaultLz77Encoder};
let lz77 = DefaultLz77Encoder::new();
assert_eq!(lz77.window_size(), lz77::MAX_WINDOW_SIZE);
let options = deflate::EncodeOptions::with_lz77(lz77);
let _deflate = deflate::Encoder::with_options(Vec::new(), options);
sourcepub fn with_window_size(size: u16) -> DefaultLz77Encoder
pub fn with_window_size(size: u16) -> DefaultLz77Encoder
Makes a new encoder instance with specified window size.
Larger window size is prefered to raise compression ratio, but it may require more working memory to encode and decode data.
§Examples
use libflate::deflate;
use libflate::lz77::{self, Lz77Encode, DefaultLz77Encoder};
let lz77 = DefaultLz77Encoder::with_window_size(1024);
assert_eq!(lz77.window_size(), 1024);
let options = deflate::EncodeOptions::with_lz77(lz77);
let _deflate = deflate::Encoder::with_options(Vec::new(), options);
Trait Implementations§
source§impl Debug for DefaultLz77Encoder
impl Debug for DefaultLz77Encoder
source§impl Default for DefaultLz77Encoder
impl Default for DefaultLz77Encoder
source§fn default() -> DefaultLz77Encoder
fn default() -> DefaultLz77Encoder
Returns the “default value” for a type. Read more
source§impl Lz77Encode for DefaultLz77Encoder
impl Lz77Encode for DefaultLz77Encoder
source§fn encode<S>(&mut self, buf: &[u8], sink: S)where
S: Sink,
fn encode<S>(&mut self, buf: &[u8], sink: S)where
S: Sink,
Encodes a buffer and writes result LZ77 codes to
sink
.source§fn flush<S>(&mut self, sink: S)where
S: Sink,
fn flush<S>(&mut self, sink: S)where
S: Sink,
Flushes the encoder, ensuring that all intermediately buffered codes are consumed by
sink
.source§fn window_size(&self) -> u16
fn window_size(&self) -> u16
Returns the window size of the encoder. Read more
source§fn compression_level(&self) -> CompressionLevel
fn compression_level(&self) -> CompressionLevel
Returns the compression level of the encoder. Read more
Auto Trait Implementations§
impl Freeze for DefaultLz77Encoder
impl RefUnwindSafe for DefaultLz77Encoder
impl Send for DefaultLz77Encoder
impl Sync for DefaultLz77Encoder
impl Unpin for DefaultLz77Encoder
impl UnwindSafe for DefaultLz77Encoder
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