pub struct Ram<const N: usize> {
pub(crate) inner: MaybeUninit<UnsafeCell<[u8; N]>>,
}
Fields§
§inner: MaybeUninit<UnsafeCell<[u8; N]>>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<const N: usize> !RefUnwindSafe for Ram<N>
impl<const N: usize> Send for Ram<N>
impl<const N: usize> Unpin for Ram<N>
impl<const N: usize> UnwindSafe for Ram<N>
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