Crate shared_buffer_rs

Source

Structs§

RBuffer
A read only buffer. This instance is Send and Sync as it does not provide any write access.
RwBuffer
A base instance which holds the leaked pointer to RwBufferInner.
RwBufferInner
RwBuffers
An instance which controls the allocation of the new buffers or reusage of already created and free instances. This instance is not thread safe. The external mutex should be used.
WBuffer
A Write and Read buffer. An exclusive instance which can not be copied or clonned. Once writing is complete, the instance can be dropped or downgraded to Read-only instance. This instance is NOT Send and Sync.

Enums§

RwBufferError

Type Aliases§

RwBufferRes