[][src]Struct nuklear::RowLayout

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

Implementations

impl RowLayout[src]

pub fn layout_type(&self) -> &PanelRowLayoutType[src]

pub fn layout_type_mut(&mut self) -> &mut PanelRowLayoutType[src]

pub fn index(&self) -> i32[src]

pub fn set_index(&mut self, i: i32)[src]

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

pub fn set_height(&mut self, i: f32)[src]

pub fn columns(&self) -> i32[src]

pub fn set_columns(&mut self, i: i32)[src]

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

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

pub fn set_item_width(&mut self, i: f32)[src]

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

pub fn set_item_height(&mut self, i: f32)[src]

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

pub fn set_item_offset(&mut self, i: f32)[src]

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

pub fn set_filled(&mut self, i: f32)[src]

pub fn item(&self) -> &Rect[src]

pub fn item_mut(&mut self) -> &mut Rect[src]

pub fn tree_depth(&self) -> i32[src]

pub fn set_tree_depth(&mut self, i: i32)[src]

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

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

Trait Implementations

impl AsMut<RowLayout> for nk_row_layout[src]

impl AsMut<nk_row_layout> for RowLayout[src]

impl AsRef<RowLayout> for nk_row_layout[src]

impl AsRef<nk_row_layout> for RowLayout[src]

impl Clone for RowLayout[src]

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