[][src]Struct sunrise_bootstrap::MultiBootHeader

#[repr(C)]pub struct MultiBootHeader {
    magic: u32,
    architecture: u32,
    header_length: u32,
    checksum: u32,
    framebuffer: FramebufferTag,
    end: EndTag,
}

The multiboot header structure of our binary.

Fields

magic: u32architecture: u32header_length: u32checksum: u32framebuffer: FramebufferTagend: EndTag

Auto Trait Implementations

impl RefUnwindSafe for MultiBootHeader

impl Send for MultiBootHeader

impl Sync for MultiBootHeader

impl Unpin for MultiBootHeader

impl UnwindSafe for MultiBootHeader

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.