[][src]Struct vga::configurations::VgaConfiguration

pub struct VgaConfiguration {
    pub miscellaneous_output: u8,
    pub sequencer_registers: &'static [(SequencerIndex, u8)],
    pub crtc_controller_registers: &'static [(CrtcControllerIndex, u8)],
    pub graphics_controller_registers: &'static [(GraphicsControllerIndex, u8)],
    pub attribute_controller_registers: &'static [(AttributeControllerIndex, u8)],
}

Represents a set of vga registers for a given mode.

Fields

miscellaneous_output: u8

Represents the configuration value for the miscellaneous output register.

sequencer_registers: &'static [(SequencerIndex, u8)]

Represents the configuration values for the sequencer registers.

crtc_controller_registers: &'static [(CrtcControllerIndex, u8)]

Represents the configuration values for the crtc controller registers.

graphics_controller_registers: &'static [(GraphicsControllerIndex, u8)]

Represents the configuration values for the graphics controller registers.

attribute_controller_registers: &'static [(AttributeControllerIndex, u8)]

Represents the configuration values for the attribute controller registers.

Trait Implementations

impl Debug for VgaConfiguration[src]

Auto Trait Implementations

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.