Struct limine_protocol::requests::EntryPointRequest
source · [−]#[repr(C)]pub struct EntryPointRequest {
pub id: [u64; 4],
pub revision: u64,
pub response: Option<NonNull<EntryPointResponse>>,
pub entry: Option<*mut ()>,
}Expand description
Request the bootloader use the specified entry point instead of the default one
Fields
id: [u64; 4]The request id array
revision: u64The request revision
response: Option<NonNull<EntryPointResponse>>Response pointer
entry: Option<*mut ()>Function to the entry point
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for EntryPointRequest
impl !Send for EntryPointRequest
impl !Sync for EntryPointRequest
impl Unpin for EntryPointRequest
impl UnwindSafe for EntryPointRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more