Struct jack::RingBufferWriter [] [src]

pub struct RingBufferWriter { /* fields omitted */ }

Write end of the ring buffer. Can only be used from one thread (can be a different from the read thread).

Methods

impl RingBufferWriter
[src]

[src]

Write data into the ringbuffer. Returns: The number of bytes written, which may range from 0 to buf.len()

[src]

Advance the write pointer. use this after peek_iter or get_vector to advance the buffer pointer.

[src]

Return the number of bytes available for writing.

[src]

Return a pair of slices of the current writable space in the ringbuffer. two slices are needed because the space available for writing may be split across the end of the ringbuffer. consider using peek_iter for convenience.

[src]

Iterator that goes over all the data available to write.

Trait Implementations

impl Send for RingBufferWriter
[src]

impl Write for RingBufferWriter
[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