[][src]Struct nuklear::StyleTab

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

Implementations

impl StyleTab[src]

pub fn background(&self) -> &StyleItem[src]

pub fn border_color(&self) -> &Color[src]

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

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

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

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

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

pub fn sym_minimize(&self) -> &SymbolType[src]

pub fn sym_maximize(&self) -> &SymbolType[src]

pub fn border(&self) -> f32[src]

pub fn rounding(&self) -> f32[src]

pub fn indent(&self) -> f32[src]

pub fn padding(&self) -> &Vec2[src]

pub fn spacing(&self) -> &Vec2[src]

pub fn set_background(&mut self, i: StyleItem)[src]

pub fn set_border_color(&mut self, c: Color)[src]

pub fn set_text(&mut self, c: Color)[src]

pub fn set_tab_maximize_button(&mut self, s: StyleButton)[src]

pub fn set_tab_minimize_button(&mut self, s: StyleButton)[src]

pub fn set_node_maximize_button(&mut self, s: StyleButton)[src]

pub fn set_node_minimize_button(&mut self, s: StyleButton)[src]

pub fn set_sym_minimize(&mut self, t: SymbolType)[src]

pub fn set_sym_maximize(&mut self, t: SymbolType)[src]

pub fn set_border(&mut self, v: f32)[src]

pub fn set_rounding(&mut self, v: f32)[src]

pub fn set_indent(&mut self, v: f32)[src]

pub fn set_padding(&mut self, v: Vec2)[src]

pub fn set_spacing(&mut self, v: Vec2)[src]

Trait Implementations

impl AsMut<StyleTab> for nk_style_tab[src]

impl AsMut<nk_style_tab> for StyleTab[src]

impl AsRef<StyleTab> for nk_style_tab[src]

impl AsRef<nk_style_tab> for StyleTab[src]

impl Clone for StyleTab[src]

impl Default for StyleTab[src]

Auto Trait Implementations

impl RefUnwindSafe for StyleTab

impl !Send for StyleTab

impl !Sync for StyleTab

impl Unpin for StyleTab

impl UnwindSafe for StyleTab

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.