pub struct Conf<const N: usize> {
pub kernel: Kernel,
pub shared: Shared,
pub memory_map: MemoryMap<N>,
pub data_placement: DataPlacement,
}Expand description
Combined configuration.
Fields§
§kernel: KernelKernel configuration.
Shared memory configuration.
memory_map: MemoryMap<N>Application memory map.
data_placement: DataPlacementPlacement of static data and allocators.
Auto Trait Implementations§
impl<const N: usize> Freeze for Conf<N>
impl<const N: usize> RefUnwindSafe for Conf<N>
impl<const N: usize> Send for Conf<N>
impl<const N: usize> Sync for Conf<N>
impl<const N: usize> Unpin for Conf<N>
impl<const N: usize> UnsafeUnpin for Conf<N>
impl<const N: usize> UnwindSafe for Conf<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