[][src]Struct compressed_vec::sink::VecSink

pub struct VecSink<T: VectBase> {
    pub vec: Vec<T>,
}

A Sink which writes all values to a Vec. A good choice as the final Sink in a chain of Sink processors! Important! This Sink will decode entire sections at a time, so the result will have up to 255 extra values.

Fields

vec: Vec<T>

Implementations

impl<T: VectBase> VecSink<T>[src]

pub fn new() -> Self[src]

Trait Implementations

impl<T: Debug + VectBase> Debug for VecSink<T>[src]

impl<T: VectBase> Sink<<T as VectBase>::SI> for VecSink<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for VecSink<T> where
    T: RefUnwindSafe

impl<T> Send for VecSink<T> where
    T: Send

impl<T> Sync for VecSink<T> where
    T: Sync

impl<T> Unpin for VecSink<T> where
    T: Unpin

impl<T> UnwindSafe for VecSink<T> where
    T: 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, U> Cast<U> for T where
    U: FromCast<T>, 
[src]

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

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

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

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<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.