Trait ringtail::buffers::WritableBuffer[][src]

pub trait WritableBuffer<T>: Buffer<T> {
    fn push(&mut self, src: &[T]) -> usize
    where
        T: Copy
; }

Required Methods

Copy the given elements and insert them into the back of the buffer.

Returns the number of elements pushed.

Implementors