Struct DecoderDictionary

struct DecoderDictionary<'a> { ... }

Prepared dictionary for decompression

Implementations

impl DecoderDictionary<'static>

fn copy(dictionary: &[u8]) -> Self

Create a prepared dictionary for decompression.

This will copy the dictionary internally.

impl<'a> DecoderDictionary<'a>

fn as_ddict(self: &Self) -> &DDict<'a>

Returns reference to DDict inner object

impl<'a> Freeze for DecoderDictionary<'a>

impl<'a> RefUnwindSafe for DecoderDictionary<'a>

impl<'a> Send for DecoderDictionary<'a>

impl<'a> Sync for DecoderDictionary<'a>

impl<'a> Unpin for DecoderDictionary<'a>

impl<'a> UnsafeUnpin for DecoderDictionary<'a>

impl<'a> UnwindSafe for DecoderDictionary<'a>

impl<T> Any for DecoderDictionary<'a>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for DecoderDictionary<'a>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for DecoderDictionary<'a>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> From for DecoderDictionary<'a>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for DecoderDictionary<'a>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for DecoderDictionary<'a>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for DecoderDictionary<'a>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>