[][src]Struct brotli::DecompressorWriter

pub struct DecompressorWriter<W>(_)
where
    W: Write
;

Methods

impl<W> DecompressorWriter<W> where
    W: Write
[src]

Important traits for DecompressorWriter<W>
pub fn new(w: W, buffer_size: usize) -> DecompressorWriter<W>[src]

Important traits for DecompressorWriter<W>
pub fn new_with_custom_dictionary(
    w: W,
    buffer_size: usize,
    dict: <StandardAlloc as Allocator<u8>>::AllocatedMemory
) -> DecompressorWriter<W>
[src]

pub fn get_ref(&self) -> &W[src]

pub fn get_mut(&mut self) -> &mut W[src]

pub fn into_inner(self) -> Result<W, W>[src]

Trait Implementations

impl<W> Write for DecompressorWriter<W> where
    W: Write
[src]

Auto Trait Implementations

impl<W> !RefUnwindSafe for DecompressorWriter<W>

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

impl<W> Sync for DecompressorWriter<W> where
    W: Sync

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

impl<W> !UnwindSafe for DecompressorWriter<W>

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.