[][src]Struct nuki_sys::nk_style

#[repr(C)]pub struct nk_style {
    pub font: *const nk_user_font,
    pub cursors: [*const nk_cursor; 7],
    pub cursor_active: *const nk_cursor,
    pub cursor_last: *mut nk_cursor,
    pub cursor_visible: c_int,
    pub text: nk_style_text,
    pub button: nk_style_button,
    pub contextual_button: nk_style_button,
    pub menu_button: nk_style_button,
    pub option: nk_style_toggle,
    pub checkbox: nk_style_toggle,
    pub selectable: nk_style_selectable,
    pub slider: nk_style_slider,
    pub progress: nk_style_progress,
    pub property: nk_style_property,
    pub edit: nk_style_edit,
    pub chart: nk_style_chart,
    pub scrollh: nk_style_scrollbar,
    pub scrollv: nk_style_scrollbar,
    pub tab: nk_style_tab,
    pub combo: nk_style_combo,
    pub window: nk_style_window,
}

Fields

font: *const nk_user_fontcursors: [*const nk_cursor; 7]cursor_active: *const nk_cursorcursor_last: *mut nk_cursorcursor_visible: c_inttext: nk_style_textbutton: nk_style_buttoncontextual_button: nk_style_buttonmenu_button: nk_style_buttonoption: nk_style_togglecheckbox: nk_style_toggleselectable: nk_style_selectableslider: nk_style_sliderprogress: nk_style_progressproperty: nk_style_propertyedit: nk_style_editchart: nk_style_chartscrollh: nk_style_scrollbarscrollv: nk_style_scrollbartab: nk_style_tabcombo: nk_style_combowindow: nk_style_window

Trait Implementations

impl Clone for nk_style[src]

impl Copy for nk_style[src]

impl Default for nk_style[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.