Struct ringtail::buffer::Buffer [] [src]

pub struct Buffer<T> { /* fields omitted */ }

Growable ring buffer.

Optimized for repeated appending of bytes to the end and removing bytes from the front of the buffer.

Methods

impl<T: Copy> Buffer<T>
[src]

DEFAULT_CAPACITY: usize = 4096

[src]

Create a new buffer with the default capacity.

[src]

Create a new buffer with a given minimum capacity pre-allocated.

[src]

Returns true if the buffer is empty.

[src]

Returns the number of elements in the buffer.

[src]

Returns the current capacity of the buffer.

[src]

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

Returns the number of elements pushed.

[src]

Pull bytes from the front of the buffer into the given location, up to the length of the destination buffer.

Returns the number of elements pulled.

[src]

Copy elements from the front of the buffer into the given slice.

Returns the number of elements copied. If there are less elements in the buffer than the length of dest, then only part of dest will be written to.

[src]

Consume up to count elements from the front of the buffer and discards them.

Returns the number of elements consumed, which may be less than count if count was greater than the number of elements in the buffer.

This operation has a runtime cost of O(1).

[src]

Remove all elements from the buffer.

Trait Implementations

impl<T: Clone> Clone for Buffer<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Copy> Default for Buffer<T>
[src]

[src]

Returns the "default value" for a type. Read more

impl Read for Buffer<u8>
[src]

[src]

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

[src]

🔬 This is a nightly-only experimental API. (read_initializer)

Determines if this Reader can work with buffers of uninitialized memory. Read more

1.0.0
[src]

Read all bytes until EOF in this source, placing them into buf. Read more

1.0.0
[src]

Read all bytes until EOF in this source, placing them into buf. Read more

1.6.0
[src]

Read the exact number of bytes required to fill buf. Read more

1.0.0
[src]

Creates a "by reference" adaptor for this instance of Read. Read more

1.0.0
[src]

Transforms this Read instance to an [Iterator] over its bytes. Read more

[src]

🔬 This is a nightly-only experimental API. (io)

the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an [Iterator] over [char]s. Read more

1.0.0
[src]

Creates an adaptor which will chain this stream with another. Read more

1.0.0
[src]

Creates an adaptor which will read at most limit bytes from it. Read more

impl Write for Buffer<u8>
[src]

[src]

Write a buffer into this object, returning how many bytes were written. Read more

[src]

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

1.0.0
[src]

Attempts to write an entire buffer into this write. Read more

1.0.0
[src]

Writes a formatted string into this writer, returning any error encountered. Read more

1.0.0
[src]

Creates a "by reference" adaptor for this instance of Write. Read more