[][src]Struct nuki::Style

#[repr(C)]
pub struct Style { /* fields omitted */ }

Methods

impl Style[src]

pub fn window_mut(&mut self) -> &mut StyleWindow[src]

pub fn font_mut(&mut self) -> &mut UserFont[src]

pub fn cursors_mut(&mut self) -> &mut CursorMap[src]

pub fn cursor_active_mut(&mut self) -> &mut Cursor[src]

pub fn set_cursor_visible(&mut self, value: bool)[src]

pub fn text_mut(&mut self) -> &mut StyleText[src]

pub fn button_mut(&mut self) -> &mut StyleButton[src]

pub fn contextual_button_mut(&mut self) -> &mut StyleButton[src]

pub fn menu_button_mut(&mut self) -> &mut StyleButton[src]

pub fn option_mut(&mut self) -> &mut StyleToggle[src]

pub fn checkbox_mut(&mut self) -> &mut StyleToggle[src]

pub fn selectable_mut(&mut self) -> &mut StyleSelectable[src]

pub fn slider_mut(&mut self) -> &mut StyleSlider[src]

pub fn progress_mut(&mut self) -> &mut StyleProgress[src]

pub fn property_mut(&mut self) -> &mut StyleProperty[src]

pub fn edit_mut(&mut self) -> &mut StyleEdit[src]

pub fn chart_mut(&mut self) -> &mut StyleChart[src]

pub fn scroll_h_mut(&mut self) -> &mut StyleScrollbar[src]

pub fn scroll_v_mut(&mut self) -> &mut StyleScrollbar[src]

pub fn tab_mut(&mut self) -> &mut StyleTab[src]

pub fn combo_mut(&mut self) -> &mut StyleCombo[src]

pub fn window(&self) -> &StyleWindow[src]

pub fn font(&self) -> &UserFont[src]

pub fn cursors(&self) -> &CursorMap[src]

pub fn cursor_active(&self) -> &Cursor[src]

pub fn cursor_visible(&self) -> bool[src]

pub fn text(&self) -> &StyleText[src]

pub fn button(&self) -> &StyleButton[src]

pub fn contextual_button(&self) -> &StyleButton[src]

pub fn menu_button(&self) -> &StyleButton[src]

pub fn option(&self) -> &StyleToggle[src]

pub fn checkbox(&self) -> &StyleToggle[src]

pub fn selectable(&self) -> &StyleSelectable[src]

pub fn slider(&self) -> &StyleSlider[src]

pub fn progress(&self) -> &StyleProgress[src]

pub fn property(&self) -> &StyleProperty[src]

pub fn edit(&self) -> &StyleEdit[src]

pub fn chart(&self) -> &StyleChart[src]

pub fn scroll_h(&self) -> &StyleScrollbar[src]

pub fn scroll_v(&self) -> &StyleScrollbar[src]

pub fn tab(&self) -> &StyleTab[src]

pub fn combo(&self) -> &StyleCombo[src]

Trait Implementations

impl AsMut<Style> for nk_style[src]

impl AsMut<nk_style> for Style[src]

impl AsRef<Style> for nk_style[src]

impl AsRef<nk_style> for Style[src]

impl Clone for Style[src]

impl Default for Style[src]

Auto Trait Implementations

impl RefUnwindSafe for Style

impl !Send for Style

impl !Sync for Style

impl Unpin for Style

impl UnwindSafe for Style

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.