[][src]Struct nuki_sys::nk_row_layout

#[repr(C)]pub struct nk_row_layout {
    pub type_: nk_panel_row_layout_type,
    pub index: c_int,
    pub height: f32,
    pub min_height: f32,
    pub columns: c_int,
    pub ratio: *const f32,
    pub item_width: f32,
    pub item_height: f32,
    pub item_offset: f32,
    pub filled: f32,
    pub item: nk_rect,
    pub tree_depth: c_int,
    pub templates: [f32; 16],
}

Fields

type_: nk_panel_row_layout_typeindex: c_intheight: f32min_height: f32columns: c_intratio: *const f32item_width: f32item_height: f32item_offset: f32filled: f32item: nk_recttree_depth: c_inttemplates: [f32; 16]

Trait Implementations

impl Clone for nk_row_layout[src]

impl Copy for nk_row_layout[src]

impl Debug for nk_row_layout[src]

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