hal-common/atomic_ring_buffer: Add push_slice, pop_slice.

This commit is contained in:
Dario Nieuwenhuis 2022-12-19 01:16:41 +01:00
parent feaeb533fb
commit 5b72410828

View File

@ -135,6 +135,14 @@ impl<'a> Writer<'a> {
n != 0
}
/// Get a buffer where data can be pushed to.
///
/// Equivalent to [`Self::push_buf`] but returns a slice.
pub fn push_slice(&mut self) -> &mut [u8] {
let (data, len) = self.push_buf();
unsafe { slice::from_raw_parts_mut(data, len) }
}
/// Get a buffer where data can be pushed to.
///
/// Write data to the start of the buffer, then call `push_done` with
@ -204,6 +212,14 @@ impl<'a> Reader<'a> {
res
}
/// Get a buffer where data can be popped from.
///
/// Equivalent to [`Self::pop_buf`] but returns a slice.
pub fn pop_slice(&mut self) -> &mut [u8] {
let (data, len) = self.pop_buf();
unsafe { slice::from_raw_parts_mut(data, len) }
}
/// Get a buffer where data can be popped from.
///
/// Read data from the start of the buffer, then call `pop_done` with