[][src]Struct compressed_vec::sink::Section256Sink

#[repr(align(32))]pub struct Section256Sink<T> where
    T: VectBase
{ pub values: [T; 256], // some fields omitted }

A simple sink storing up to 256 values in an array, ie all the values in a section. Useful for iterating over or processing all the raw values of a section.

Fields

values: [T; 256]

Implementations

impl<T> Section256Sink<T> where
    T: VectBase
[src]

pub fn new() -> Self[src]

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for Section256Sink<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.