[][src]Struct building_blocks::prelude::FastLz4

pub struct FastLz4 {
    pub level: u32,
}

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

Fields

level: u32

Trait Implementations

impl Clone for FastLz4[src]

impl<N, T, M> Compressible<FastLz4> for Chunk<N, T, M> where
    M: Clone,
    T: Copy,
    ExtentN<N>: IntegerExtent<N>, 
[src]

type Compressed = FastCompressedChunk<N, T, M>

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

impl Copy for FastLz4[src]

impl Debug for FastLz4[src]

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

type Decompressed = Chunk<N, T, M>

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

Auto Trait Implementations

impl RefUnwindSafe for FastLz4

impl Send for FastLz4

impl Sync for FastLz4

impl Unpin for FastLz4

impl UnwindSafe for FastLz4

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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Slottable for T where
    T: Copy
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,