#[repr(C)]pub struct BootInfo {
pub framebuffer: Framebuffer,
}Expand description
Boot-time data provided by roxy-loader.
This is the main value passed to the kernel entry point. It groups together the information a kernel can use immediately after startup.
Fields§
§framebuffer: FramebufferInformation about the framebuffer that the kernel can draw to.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BootInfo
impl RefUnwindSafe for BootInfo
impl Send for BootInfo
impl Sync for BootInfo
impl Unpin for BootInfo
impl UnsafeUnpin for BootInfo
impl UnwindSafe for BootInfo
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