pub struct ArchConfig {
pub cpu: CpuInfo,
pub trap_rsp: usize,
pub secondary_start: &'static [u8],
}Expand description
Contains architecture-specific configurations obtained from setup_main_cpu().
Fields§
§cpu: CpuInfo§trap_rsp: usize§secondary_start: &'static [u8]Auto Trait Implementations§
impl Freeze for ArchConfig
impl RefUnwindSafe for ArchConfig
impl Send for ArchConfig
impl Sync for ArchConfig
impl Unpin for ArchConfig
impl UnsafeUnpin for ArchConfig
impl UnwindSafe for ArchConfig
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