Struct buffer::ArrayVecBuffer [] [src]

pub struct ArrayVecBuffer<'data, A: 'data + Array<Item=u8>> {
    // some 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]

fn drop(&mut self)

A method called when the value goes out of scope. Read more

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

fn to_buffer_ref<'s>(&'s mut self) -> BufferRef<'d, 's>

Second step to convert a T: Buffer to a BufferRef.