[][src]Struct sfl_parser::BMCharacter

pub struct BMCharacter {
    pub id: i32,
    pub x: i32,
    pub y: i32,
    pub width: i32,
    pub height: i32,
    pub xoffset: i32,
    pub yoffset: i32,
    pub xadvance: i32,
}

Represents a single character in the bitmap font atlas. Contains coordinates, sizes, offsets and advances (everything required to render letters from the atlas).

Fields

id: i32

char id of the character.

x: i32

x-position of the character on the atlas.

y: i32

y-position of the character on the atlas.

width: i32

Width of the character on the atlas.

height: i32

Height of the character.

xoffset: i32

x-offset of the character.

yoffset: i32

y-offset of the character.

xadvance: i32

x-advance of the character.

Trait Implementations

impl Debug for BMCharacter
[src]

Auto Trait Implementations

impl Send for BMCharacter

impl Sync for BMCharacter

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]