Enum multiboot2::FramebufferType[][src]

pub enum FramebufferType<'a> {
    Indexed {
        palette: &'a [FramebufferColor],
    },
    RGB {
        red: FramebufferField,
        green: FramebufferField,
        blue: FramebufferField,
    },
    Text,
}

Variants

Fields of Indexed

Fields of RGB

Trait Implementations

impl<'a> Debug for FramebufferType<'a>
[src]

Formats the value using the given formatter. Read more

impl<'a> PartialEq for FramebufferType<'a>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl<'a> Send for FramebufferType<'a>

impl<'a> Sync for FramebufferType<'a>