[][src]Struct nuki_sys::nk_style_scrollbar

#[repr(C)]pub struct nk_style_scrollbar {
    pub normal: nk_style_item,
    pub hover: nk_style_item,
    pub active: nk_style_item,
    pub border_color: nk_color,
    pub cursor_normal: nk_style_item,
    pub cursor_hover: nk_style_item,
    pub cursor_active: nk_style_item,
    pub cursor_border_color: nk_color,
    pub border: f32,
    pub rounding: f32,
    pub border_cursor: f32,
    pub rounding_cursor: f32,
    pub padding: nk_vec2,
    pub show_buttons: c_int,
    pub inc_button: nk_style_button,
    pub dec_button: nk_style_button,
    pub inc_symbol: nk_symbol_type,
    pub dec_symbol: nk_symbol_type,
    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_itemactive: nk_style_itemborder_color: nk_colorcursor_normal: nk_style_itemcursor_hover: nk_style_itemcursor_active: nk_style_itemcursor_border_color: nk_colorborder: f32rounding: f32border_cursor: f32rounding_cursor: f32padding: nk_vec2show_buttons: c_intinc_button: nk_style_buttondec_button: nk_style_buttoninc_symbol: nk_symbol_typedec_symbol: nk_symbol_typeuserdata: 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_scrollbar[src]

impl Copy for nk_style_scrollbar[src]

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