[][src]Struct nuklear_sys::nk_style_combo

#[repr(C)]
pub struct nk_style_combo {
    pub normal: nk_style_item,
    pub hover: nk_style_item,
    pub active: nk_style_item,
    pub border_color: nk_color,
    pub label_normal: nk_color,
    pub label_hover: nk_color,
    pub label_active: nk_color,
    pub symbol_normal: nk_color,
    pub symbol_hover: nk_color,
    pub symbol_active: nk_color,
    pub button: nk_style_button,
    pub sym_normal: nk_symbol_type,
    pub sym_hover: nk_symbol_type,
    pub sym_active: nk_symbol_type,
    pub border: f32,
    pub rounding: f32,
    pub content_padding: nk_vec2,
    pub button_padding: nk_vec2,
    pub spacing: nk_vec2,
}

Fields

normal: nk_style_itemhover: nk_style_itemactive: nk_style_itemborder_color: nk_colorlabel_normal: nk_colorlabel_hover: nk_colorlabel_active: nk_colorsymbol_normal: nk_colorsymbol_hover: nk_colorsymbol_active: nk_colorbutton: nk_style_buttonsym_normal: nk_symbol_typesym_hover: nk_symbol_typesym_active: nk_symbol_typeborder: f32rounding: f32content_padding: nk_vec2button_padding: nk_vec2spacing: nk_vec2

Trait Implementations

impl Clone for nk_style_combo[src]

impl Copy for nk_style_combo[src]

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