[][src]Struct nuklear_sys::nk_font_atlas

#[repr(C)]
pub struct nk_font_atlas {
    pub pixel: *mut c_void,
    pub tex_width: c_int,
    pub tex_height: c_int,
    pub permanent: nk_allocator,
    pub temporary: nk_allocator,
    pub custom: nk_recti,
    pub cursors: [nk_cursor; 7],
    pub glyph_count: c_int,
    pub glyphs: *mut nk_font_glyph,
    pub default_font: *mut nk_font,
    pub fonts: *mut nk_font,
    pub config: *mut nk_font_config,
    pub font_num: c_int,
}

Fields

pixel: *mut c_voidtex_width: c_inttex_height: c_intpermanent: nk_allocatortemporary: nk_allocatorcustom: nk_recticursors: [nk_cursor; 7]glyph_count: c_intglyphs: *mut nk_font_glyphdefault_font: *mut nk_fontfonts: *mut nk_fontconfig: *mut nk_font_configfont_num: c_int

Trait Implementations

impl Clone for nk_font_atlas[src]

impl Copy for nk_font_atlas[src]

impl Default for nk_font_atlas[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.