Trait buffer::ToBufferRef [] [src]

pub trait ToBufferRef<'data> {
    fn to_buffer_ref<'size>(&'size mut self) -> BufferRef<'data, 'size>;
}

Internal trait for the intermediate result of converting a T: Buffer into a BufferRef.

Required Methods

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

Implementors