[][src]Struct nuklear_sys::nk_font

#[repr(C)]
pub struct nk_font {
    pub next: *mut nk_font,
    pub handle: nk_user_font,
    pub info: nk_baked_font,
    pub scale: f32,
    pub glyphs: *mut nk_font_glyph,
    pub fallback: *const nk_font_glyph,
    pub fallback_codepoint: nk_rune,
    pub texture: nk_handle,
    pub config: *mut nk_font_config,
}

Fields

next: *mut nk_fonthandle: nk_user_fontinfo: nk_baked_fontscale: f32glyphs: *mut nk_font_glyphfallback: *const nk_font_glyphfallback_codepoint: nk_runetexture: nk_handleconfig: *mut nk_font_config

Trait Implementations

impl Clone for nk_font[src]

impl Copy for nk_font[src]

impl Default for nk_font[src]

Auto Trait Implementations

impl RefUnwindSafe for nk_font

impl !Send for nk_font

impl !Sync for nk_font

impl Unpin for nk_font

impl UnwindSafe for nk_font

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.