pub struct MemoryAdapter<const SIZE: usize> {
pub memory: [u8; SIZE],
}Fields§
§memory: [u8; SIZE]Implementations§
Trait Implementations§
Source§impl<const SIZE: usize> Default for MemoryAdapter<SIZE>
impl<const SIZE: usize> Default for MemoryAdapter<SIZE>
Auto Trait Implementations§
impl<const SIZE: usize> Freeze for MemoryAdapter<SIZE>
impl<const SIZE: usize> RefUnwindSafe for MemoryAdapter<SIZE>
impl<const SIZE: usize> Send for MemoryAdapter<SIZE>
impl<const SIZE: usize> Sync for MemoryAdapter<SIZE>
impl<const SIZE: usize> Unpin for MemoryAdapter<SIZE>
impl<const SIZE: usize> UnwindSafe for MemoryAdapter<SIZE>
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