pub struct HuffmanContainer<B>
where B: Ord + Clone,
{ /* private fields */ }
Expand description

A container that contains slices [B] as items.

Implementations§

source§

impl<B> HuffmanContainer<B>
where B: Ord + Clone,

source

pub fn print(&self)

Prints statistics about encoded containers.

Trait Implementations§

source§

impl<B> Clone for HuffmanContainer<B>
where B: Ord + Clone,

source§

fn clone(&self) -> HuffmanContainer<B>

Returns a copy of the value. Read more
source§

fn clone_from(&mut self, source: &HuffmanContainer<B>)

Performs copy-assignment from source. Read more
source§

impl<B> Default for HuffmanContainer<B>
where B: Ord + Clone,

source§

fn default() -> HuffmanContainer<B>

Returns the “default value” for a type. Read more
source§

impl<B> Push<&[B]> for HuffmanContainer<B>
where B: Ord + Clone + 'static,

source§

fn push(&mut self, item: &[B]) -> (usize, usize)

Push item into self, returning an index that allows to look up the corresponding read item.
source§

impl<B, const N: usize> Push<&[B; N]> for HuffmanContainer<B>
where B: Ord + Clone + 'static,

source§

fn push(&mut self, item: &[B; N]) -> (usize, usize)

Push item into self, returning an index that allows to look up the corresponding read item.
source§

impl<B> Push<&Vec<B>> for HuffmanContainer<B>
where B: Ord + Clone + 'static,

source§

fn push(&mut self, item: &Vec<B>) -> (usize, usize)

Push item into self, returning an index that allows to look up the corresponding read item.
source§

impl<B, const N: usize> Push<[B; N]> for HuffmanContainer<B>
where B: Ord + Clone + 'static,

source§

fn push(&mut self, item: [B; N]) -> (usize, usize)

Push item into self, returning an index that allows to look up the corresponding read item.
source§

impl<B> Push<Vec<B>> for HuffmanContainer<B>
where B: Ord + Clone + 'static,

source§

fn push(&mut self, item: Vec<B>) -> (usize, usize)

Push item into self, returning an index that allows to look up the corresponding read item.
source§

impl<'a, B> Push<Wrapped<'a, B>> for HuffmanContainer<B>
where B: Ord + Clone + 'static,

source§

fn push(&mut self, item: Wrapped<'a, B>) -> (usize, usize)

Push item into self, returning an index that allows to look up the corresponding read item.
source§

impl<B> Region for HuffmanContainer<B>
where B: Ord + Clone + 'static,

§

type Owned = Vec<B>

An owned type that can be constructed from a read item.
§

type ReadItem<'a> = Wrapped<'a, B>

The type of the data that one gets out of the container.
§

type Index = (usize, usize)

The type to index into the container. Should be treated as an opaque type, even if known.
source§

fn merge_regions<'a>( regions: impl Iterator<Item = &'a HuffmanContainer<B>> + Clone, ) -> HuffmanContainer<B>
where HuffmanContainer<B>: 'a,

Construct a region that can absorb the contents of regions in the future.
source§

fn index( &self, _: <HuffmanContainer<B> as Region>::Index, ) -> <HuffmanContainer<B> as Region>::ReadItem<'_>

Index into the container. The index must be obtained by pushing data into the container.
source§

fn reserve_regions<'a, I>(&mut self, _regions: I)
where HuffmanContainer<B>: 'a, I: Iterator<Item = &'a HuffmanContainer<B>> + Clone,

Ensure that the region can absorb the items of regions without reallocation
source§

fn clear(&mut self)

Remove all elements from this region, but retain allocations if possible.
source§

fn heap_size<F>(&self, _callback: F)
where F: FnMut(usize, usize),

Heap size, size - capacity
source§

fn reborrow<'b, 'a>( item: <HuffmanContainer<B> as Region>::ReadItem<'a>, ) -> <HuffmanContainer<B> as Region>::ReadItem<'b>
where 'a: 'b, HuffmanContainer<B>: 'a,

Converts a read item into one with a narrower lifetime.

Auto Trait Implementations§

§

impl<B> Freeze for HuffmanContainer<B>
where B: Freeze,

§

impl<B> RefUnwindSafe for HuffmanContainer<B>
where B: RefUnwindSafe,

§

impl<B> Send for HuffmanContainer<B>
where B: Send,

§

impl<B> Sync for HuffmanContainer<B>
where B: Sync,

§

impl<B> Unpin for HuffmanContainer<B>
where B: Unpin,

§

impl<B> UnwindSafe for HuffmanContainer<B>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T> Data for T
where T: Clone + 'static,