[][src]Struct building_blocks_storage::array::FastLz4CompressedArrayN

pub struct FastLz4CompressedArrayN<N, T> {
    pub compressed_bytes: Vec<u8>,
    pub extent: ExtentN<N>,
    // some fields omitted
}

A compressed ArrayN that decompresses quickly, but only on the same platform where it was compressed.

Fields

compressed_bytes: Vec<u8>extent: ExtentN<N>

Implementations

impl<N, T> FastLz4CompressedArrayN<N, T>[src]

pub fn extent(&self) -> &ExtentN<N>[src]

Trait Implementations

impl<N: Clone, T: Clone> Clone for FastLz4CompressedArrayN<N, T>[src]

impl<N, T> Decompressible<FastLz4> for FastLz4CompressedArrayN<N, T> where
    T: Copy,
    ExtentN<N>: IntegerExtent<N>, 
[src]

type Decompressed = ArrayN<N, T>

Auto Trait Implementations

impl<N, T> RefUnwindSafe for FastLz4CompressedArrayN<N, T> where
    N: RefUnwindSafe,
    T: RefUnwindSafe

impl<N, T> Send for FastLz4CompressedArrayN<N, T> where
    N: Send,
    T: Send

impl<N, T> Sync for FastLz4CompressedArrayN<N, T> where
    N: Sync,
    T: Sync

impl<N, T> Unpin for FastLz4CompressedArrayN<N, T> where
    N: Unpin,
    T: Unpin

impl<N, T> UnwindSafe for FastLz4CompressedArrayN<N, T> where
    N: UnwindSafe,
    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> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.