[][src]Struct barc::EncodeWrapper

pub struct EncodeWrapper<'a>(_);

Wrapper holding a potentially encoding Write reference for the underlying BARC File reference.

Methods

impl<'a> EncodeWrapper<'a>[src]

Important traits for EncodeWrapper<'a>
pub fn plain(file: &'a File) -> EncodeWrapper<'a>[src]

Return wrapper for Plain (no compression) output.

Important traits for EncodeWrapper<'a>
pub fn gzip(file: &'a File, compression_level: u32) -> EncodeWrapper<'a>[src]

Return wrapper for Gzip output.

Important traits for EncodeWrapper<'a>
pub fn brotli(file: &'a File, compression_level: u32) -> EncodeWrapper<'a>[src]

Return wrapper for Brotli output.

pub fn mode(&self) -> Compression[src]

Return the Compression flag variant in use.

pub fn finish(self) -> Result<(), BarcError>[src]

Consume the wrapper, finishing any encoding and flushing the completed write.

Trait Implementations

impl<'a> Write for EncodeWrapper<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for EncodeWrapper<'a>

impl<'a> Send for EncodeWrapper<'a>

impl<'a> Sync for EncodeWrapper<'a>

impl<'a> Unpin for EncodeWrapper<'a>

impl<'a> !UnwindSafe for EncodeWrapper<'a>

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,