Enum evegfx::display_list::options::BitmapExtFormat[][src]

#[repr(u16)]pub enum BitmapExtFormat {
    ARGB1555,
    L1,
    L4,
    L8,
    RGB332,
    ARGB2,
    ARGB4,
    RGB565,
    Text8x8,
    TextVGA,
    Bargraph,
    Paletted565,
    Paletted4444,
    Paletted8,
    L2,
    CompressedRGBAASTC4x4KHR,
    CompressedRGBAASTC5x4KHR,
    CompressedRGBAASTC5x5KHR,
    CompressedRGBAASTC6x5KHR,
    CompressedRGBAASTC6x6KHR,
    CompressedRGBAASTC8x5KHR,
    CompressedRGBAASTC8x6KHR,
    CompressedRGBAASTC8x8KHR,
    CompressedRGBAASTC10x5KHR,
    CompressedRGBAASTC10x6KHR,
    CompressedRGBAASTC10x8KHR,
    CompressedRGBAASTC10x10KHR,
    CompressedRGBAASTC12x10KHR,
    CompressedRGBAASTC12x12KHR,
}

Variants

ARGB1555
L1
L4
L8
RGB332
ARGB2
ARGB4
RGB565
Text8x8
TextVGA
Bargraph
Paletted565
Paletted4444
Paletted8
L2
CompressedRGBAASTC4x4KHR
CompressedRGBAASTC5x4KHR
CompressedRGBAASTC5x5KHR
CompressedRGBAASTC6x5KHR
CompressedRGBAASTC6x6KHR
CompressedRGBAASTC8x5KHR
CompressedRGBAASTC8x6KHR
CompressedRGBAASTC8x8KHR
CompressedRGBAASTC10x5KHR
CompressedRGBAASTC10x6KHR
CompressedRGBAASTC10x8KHR
CompressedRGBAASTC10x10KHR
CompressedRGBAASTC12x10KHR
CompressedRGBAASTC12x12KHR

Trait Implementations

impl Clone for BitmapExtFormat[src]

impl Copy for BitmapExtFormat[src]

impl From<BitmapExtFormat> for BitmapFormat[src]

impl PartialEq<BitmapExtFormat> for BitmapExtFormat[src]

impl StructuralPartialEq for BitmapExtFormat[src]

impl TryFrom<BitmapFormat> for BitmapExtFormat[src]

type Error = ()

The type returned in the event of a conversion error.

impl TryFrom<u16> for BitmapExtFormat[src]

type Error = TryFromPrimitiveError<Self>

The type returned in the event of a conversion error.

impl TryFromPrimitive for BitmapExtFormat[src]

type Primitive = u16

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.