#[repr(usize)]
pub enum BitmapHeight {
    Size14,
    Size16,
    Size18,
    Size20,
    Size22,
    Size24,
    Size32,
    Size64,
}
Expand description

The height of the bitmap font. The font size will be a a few percent less, because each bitmap letter contains vertical padding for proper alignment of chars (i.e. ÄyA). The width of each bitmap character will be also less than the height, because there is no horizontal padding included.

The available variants depend on the selected Cargo build features.

To see why the term “bitmap” is used, see section Terminology in the README.

Variants

Size14

Size16

Size18

Size20

Size22

Size24

Size32

Size64

Implementations

Returns the numeric value of the variant.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Performs the conversion.

Performs the conversion.

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.