[][src]Struct nuklear_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 Copy for nk_row_layout[src]

impl Default for nk_row_layout[src]

impl Clone for nk_row_layout[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for nk_row_layout[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into 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> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.