pub struct LoadedKernel {
pub load_info: LoadInfo,
pub entry_point: u64,
}Available on crate feature
loader only.Expand description
Load information required by the loader.
Fields§
§load_info: LoadInfoLoad information required by the kernel.
entry_point: u64The kernel’s entry point.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoadedKernel
impl RefUnwindSafe for LoadedKernel
impl Send for LoadedKernel
impl Sync for LoadedKernel
impl Unpin for LoadedKernel
impl UnwindSafe for LoadedKernel
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