pub enum DecodingBuffer<'a> {
    U8(&'a mut [u8]),
    U16(&'a mut [u16]),
    U32(&'a mut [u32]),
    U64(&'a mut [u64]),
    F32(&'a mut [f32]),
    F64(&'a mut [f64]),
    I8(&'a mut [i8]),
    I16(&'a mut [i16]),
    I32(&'a mut [i32]),
    I64(&'a mut [i64]),
}

Variants§

§

U8(&'a mut [u8])

A slice of unsigned bytes

§

U16(&'a mut [u16])

A slice of unsigned words

§

U32(&'a mut [u32])

A slice of 32 bit unsigned ints

§

U64(&'a mut [u64])

A slice of 64 bit unsigned ints

§

F32(&'a mut [f32])

A slice of 32 bit IEEE floats

§

F64(&'a mut [f64])

A slice of 64 bit IEEE floats

§

I8(&'a mut [i8])

A slice of 8 bits signed ints

§

I16(&'a mut [i16])

A slice of 16 bits signed ints

§

I32(&'a mut [i32])

A slice of 32 bits signed ints

§

I64(&'a mut [i64])

A slice of 64 bits signed ints

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for DecodingBuffer<'a>

§

impl<'a> Send for DecodingBuffer<'a>

§

impl<'a> Sync for DecodingBuffer<'a>

§

impl<'a> Unpin for DecodingBuffer<'a>

§

impl<'a> !UnwindSafe for DecodingBuffer<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.