[][src]Struct fastanvil::PackedBits

pub struct PackedBits<'a>(pub &'a [u8]);

PackedBits can be used in place of blockstates in chunks to avoid allocating memory for them when they might not be needed. This object by default just retains a reference to the data in the input, and unpack_into can be used to get the unpacked version when needed.

Implementations

impl<'a> PackedBits<'a>[src]

pub fn unpack_into(&self, bits_per_item: usize, buf: &mut [u16])[src]

pub fn unpack_heights_into(&self, buf: &mut [u16])[src]

Trait Implementations

impl<'a> Debug for PackedBits<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for PackedBits<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for PackedBits<'a>

impl<'a> Send for PackedBits<'a>

impl<'a> Sync for PackedBits<'a>

impl<'a> Unpin for PackedBits<'a>

impl<'a> UnwindSafe for PackedBits<'a>

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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, 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.