[][src]Enum vga::vga::VideoMode

pub enum VideoMode {
    Mode40x25,
    Mode40x50,
    Mode80x25,
    Mode320x200x256,
    Mode640x480x16,
}

Represents a specified vga video mode.

Variants

Mode40x25

Represents text mode 40x25.

Mode40x50

Represents text mode 40x50.

Mode80x25

Represents text mode 80x25.

Mode320x200x256

Represents graphics mode 320x200x256.

Mode640x480x16

Represents graphics mode 640x480x16.

Trait Implementations

impl Clone for VideoMode[src]

impl Copy for VideoMode[src]

impl Debug for VideoMode[src]

Auto Trait Implementations

impl Send for VideoMode

impl Sync for VideoMode

impl Unpin for VideoMode

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.