[][src]Struct nuklear_sys::nk_style_selectable

#[repr(C)]
pub struct nk_style_selectable {
    pub normal: nk_style_item,
    pub hover: nk_style_item,
    pub pressed: nk_style_item,
    pub normal_active: nk_style_item,
    pub hover_active: nk_style_item,
    pub pressed_active: nk_style_item,
    pub text_normal: nk_color,
    pub text_hover: nk_color,
    pub text_pressed: nk_color,
    pub text_normal_active: nk_color,
    pub text_hover_active: nk_color,
    pub text_pressed_active: nk_color,
    pub text_background: nk_color,
    pub text_alignment: nk_flags,
    pub rounding: f32,
    pub padding: nk_vec2,
    pub touch_padding: nk_vec2,
    pub image_padding: nk_vec2,
    pub userdata: nk_handle,
    pub draw_begin: Option<unsafe extern "C" fn(arg1: *mut nk_command_buffer, arg2: nk_handle)>,
    pub draw_end: Option<unsafe extern "C" fn(arg1: *mut nk_command_buffer, arg2: nk_handle)>,
}

Fields

normal: nk_style_itemhover: nk_style_itempressed: nk_style_itemnormal_active: nk_style_itemhover_active: nk_style_itempressed_active: nk_style_itemtext_normal: nk_colortext_hover: nk_colortext_pressed: nk_colortext_normal_active: nk_colortext_hover_active: nk_colortext_pressed_active: nk_colortext_background: nk_colortext_alignment: nk_flagsrounding: f32padding: nk_vec2touch_padding: nk_vec2image_padding: nk_vec2userdata: nk_handledraw_begin: Option<unsafe extern "C" fn(arg1: *mut nk_command_buffer, arg2: nk_handle)>draw_end: Option<unsafe extern "C" fn(arg1: *mut nk_command_buffer, arg2: nk_handle)>

Trait Implementations

impl Clone for nk_style_selectable[src]

impl Copy for nk_style_selectable[src]

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