[][src]Struct bmfont_parser::InfoDetails

pub struct InfoDetails {
    pub bold: u32,
    pub italic: u32,
    pub charset: String,
    pub unicode: u32,
    pub stretch_h: u32,
    pub smooth: u32,
    pub aa: u32,
    pub padding: [u32; 4],
    pub spacing: [u32; 2],
    pub outline: u32,
}

Some details from the info block

Fields

bold: u32

Is the font bold

italic: u32

Is the font italic

charset: String

OEM charset name

unicode: u32

Is the font unicode

stretch_h: u32

height-stretch of the font

smooth: u32

1 if smoothing was turned on

aa: u32

Supersampling level used. 1 means no supersampling

padding: [u32; 4]

Padding for each character [up, right, down, left]

spacing: [u32; 2]

Spacing for each character [horizontal, vertical]

outline: u32

Outline thickness

Trait Implementations

impl Clone for InfoDetails
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for InfoDetails
[src]

Auto Trait Implementations

impl Send for InfoDetails

impl Sync for InfoDetails

Blanket Implementations

impl<T> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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> Any for T where
    T: 'static + ?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.