[][src]Struct coreboot_table::Framebuffer

#[repr(packed)]
pub struct Framebuffer {
    pub record: Record,
    pub physical_address: u64,
    pub x_resolution: u32,
    pub y_resolution: u32,
    pub bytes_per_line: u32,
    pub bits_per_pixel: u8,
    pub red_mask_pos: u8,
    pub red_mask_size: u8,
    pub green_mask_pos: u8,
    pub green_mask_size: u8,
    pub blue_mask_pos: u8,
    pub blue_mask_size: u8,
    pub reserved_mask_pos: u8,
    pub reserved_mask_size: u8,
}

Fields

record: Recordphysical_address: u64x_resolution: u32y_resolution: u32bytes_per_line: u32bits_per_pixel: u8red_mask_pos: u8red_mask_size: u8green_mask_pos: u8green_mask_size: u8blue_mask_pos: u8blue_mask_size: u8reserved_mask_pos: u8reserved_mask_size: u8

Trait Implementations

impl Debug for Framebuffer[src]

impl Clone for Framebuffer[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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