1use core::mem::MaybeUninit;
2use core::ops::{Deref, DerefMut};
34use super::DEFAULT_ARRAY_BUFFER;
56/// An array that can conveniently be used as a buffer, by default this is
7/// [`DEFAULT_ARRAY_BUFFER`] bytes large.
8///
9/// This is aligned to 8 bytes, since that's an alignment which works with many
10/// common Rust types.
11///
12/// See the [module level documentation][super] for more information.
13#[repr(align(8))]
14pub struct ArrayBuffer<const N: usize = DEFAULT_ARRAY_BUFFER> {
15 data: [MaybeUninit<u8>; N],
16}
1718impl ArrayBuffer {
19/// Construct a new buffer with the default size of
20 /// [`DEFAULT_ARRAY_BUFFER`].
21pub const fn new() -> Self {
22Self::with_size()
23 }
24}
2526impl Default for ArrayBuffer {
27#[inline]
28fn default() -> Self {
29Self::new()
30 }
31}
3233impl<const N: usize> ArrayBuffer<N> {
34/// Construct a new buffer with a custom size.
35pub const fn with_size() -> Self {
36Self {
37// SAFETY: This is safe to initialize, since it's just an array of
38 // contiguous uninitialized memory.
39data: unsafe { MaybeUninit::uninit().assume_init() },
40 }
41 }
42}
4344impl<const N: usize> Deref for ArrayBuffer<N> {
45type Target = [MaybeUninit<u8>];
4647#[inline]
48fn deref(&self) -> &Self::Target {
49&self.data
50 }
51}
5253impl<const N: usize> DerefMut for ArrayBuffer<N> {
54#[inline]
55fn deref_mut(&mut self) -> &mut Self::Target {
56&mut self.data
57 }
58}