Struct libflate::deflate::EncodeOptions [] [src]

pub struct EncodeOptions<E = DefaultLz77Encoder> { /* fields omitted */ }

Options for a DEFLATE encoder.

Methods

impl EncodeOptions<DefaultLz77Encoder>
[src]

Makes a default instance.

Examples

use libflate::deflate::{Encoder, EncodeOptions};

let options = EncodeOptions::new();
let encoder = Encoder::with_options(Vec::new(), options);

impl<E> EncodeOptions<E> where E: Lz77Encode
[src]

Specifies the LZ77 encoder used to compress input data.

Example

use libflate::lz77::DefaultLz77Encoder;
use libflate::deflate::{Encoder, EncodeOptions};

let options = EncodeOptions::with_lz77(DefaultLz77Encoder::new());
let encoder = Encoder::with_options(Vec::new(), options);

Disables LZ77 compression.

Example

use libflate::lz77::DefaultLz77Encoder;
use libflate::deflate::{Encoder, EncodeOptions};

let options = EncodeOptions::new().no_compression();
let encoder = Encoder::with_options(Vec::new(), options);

Specifies the hint of the size of a DEFLATE block.

The default value is DEFAULT_BLOCK_SIZE.

Example

use libflate::deflate::{Encoder, EncodeOptions};

let options = EncodeOptions::new().block_size(512 * 1024);
let encoder = Encoder::with_options(Vec::new(), options);

Specifies to compress with fixed huffman codes.

Example

use libflate::deflate::{Encoder, EncodeOptions};

let options = EncodeOptions::new().fixed_huffman_codes();
let encoder = Encoder::with_options(Vec::new(), options);

Trait Implementations

impl<E: Debug> Debug for EncodeOptions<E>
[src]

Formats the value using the given formatter.

impl<E: Clone> Clone for EncodeOptions<E>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<E: PartialEq> PartialEq for EncodeOptions<E>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<E: Eq> Eq for EncodeOptions<E>
[src]

impl<E: Hash> Hash for EncodeOptions<E>
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl Default for EncodeOptions<DefaultLz77Encoder>
[src]

Returns the "default value" for a type. Read more