[][src]Struct lzzzz::lz4f::WriteCompressor

pub struct WriteCompressor<W: Write> { /* fields omitted */ }

The Write-based streaming compressor.

Example

use lzzzz::lz4f::WriteCompressor;
use std::{fs::File, io::prelude::*};

let mut f = File::create("foo.lz4")?;
let mut w = WriteCompressor::new(&mut f, Default::default())?;

w.write_all(b"Hello world!")?;

Implementations

impl<W: Write> WriteCompressor<W>[src]

pub fn new(writer: W, prefs: Preferences) -> Result<Self>[src]

Creates a new WriteCompressor<W>.

pub fn with_dict(
    writer: W,
    prefs: Preferences,
    dict: Dictionary
) -> Result<Self>
[src]

Creates a new WriteCompressor<W> with a dictionary.

Trait Implementations

impl<W: Write> Drop for WriteCompressor<W>[src]

impl<W: Write> Write for WriteCompressor<W>[src]

Auto Trait Implementations

impl<W> RefUnwindSafe for WriteCompressor<W> where
    W: RefUnwindSafe

impl<W> Send for WriteCompressor<W> where
    W: Send

impl<W> !Sync for WriteCompressor<W>

impl<W> Unpin for WriteCompressor<W> where
    W: Unpin

impl<W> UnwindSafe for WriteCompressor<W> where
    W: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.