pub enum TextMode {
    Transparent {
        colour: (u8, u8, u8),
    },
    Shaded {
        foreground: (u8, u8, u8),
        background: (u8, u8, u8),
    },
}
Expand description

Set the mode for drawing text.

Variants

Transparent

Fields

colour: (u8, u8, u8)

Render the text transparently.

Shaded

Fields

foreground: (u8, u8, u8)
background: (u8, u8, u8)

Render the text with a foreground and a background colour.

This creates a box around the text.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.