Struct riot_sys::ringbuffer_t
source · #[repr(C)]pub struct ringbuffer_t {
pub buf: *mut c_char,
pub size: c_uint,
pub start: c_uint,
pub avail: c_uint,
}
Expand description
@brief Ringbuffer.
@details Non thread-safe FIFO ringbuffer implementation around a char
array.
Fields§
§buf: *mut c_char
< Buffer to operate on.
size: c_uint
< Size of buf.
start: c_uint
< Current read position in the ring buffer.
avail: c_uint
< Number of elements available for reading.
Trait Implementations§
source§impl Clone for ringbuffer_t
impl Clone for ringbuffer_t
source§fn clone(&self) -> ringbuffer_t
fn clone(&self) -> ringbuffer_t
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ringbuffer_t
impl Debug for ringbuffer_t
source§impl Default for ringbuffer_t
impl Default for ringbuffer_t
impl Copy for ringbuffer_t
Auto Trait Implementations§
impl RefUnwindSafe for ringbuffer_t
impl !Send for ringbuffer_t
impl !Sync for ringbuffer_t
impl Unpin for ringbuffer_t
impl UnwindSafe for ringbuffer_t
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more