Struct buffer::ArrayVecBuffer[][src]

pub struct ArrayVecBuffer<'data, A: 'data + Array<Item = u8>> { /* fields omitted */ }

The intermediate step from a ArrayVec to a BufferRef.

Trait Implementations

impl<'d, A: Array<Item = u8>> Drop for ArrayVecBuffer<'d, A>[src]

impl<'d, A: Array<Item = u8>> ToBufferRef<'d> for ArrayVecBuffer<'d, A>[src]

Auto Trait Implementations

impl<'data, A> RefUnwindSafe for ArrayVecBuffer<'data, A> where
    A: RefUnwindSafe,
    <A as Array>::Index: RefUnwindSafe

impl<'data, A> Send for ArrayVecBuffer<'data, A> where
    A: Send,
    <A as Array>::Index: Send

impl<'data, A> Sync for ArrayVecBuffer<'data, A> where
    A: Sync,
    <A as Array>::Index: Sync

impl<'data, A> Unpin for ArrayVecBuffer<'data, A>

impl<'data, A> !UnwindSafe for ArrayVecBuffer<'data, 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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.