[][src]Enum vga::vga::FrameBuffer

#[repr(u32)]pub enum FrameBuffer {
    GraphicsMode,
    CgaMode,
    MdaMode,
}

Represents the starting address of the frame buffer for various video modes.

Variants

GraphicsMode

The starting address for graphics modes.

CgaMode

The starting address for color text modes.

MdaMode

The starting address for monochrome text modes.

Trait Implementations

impl Clone for FrameBuffer[src]

impl Copy for FrameBuffer[src]

impl Debug for FrameBuffer[src]

impl From<FrameBuffer> for u32[src]

impl From<u8> for FrameBuffer[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.