[][src]Struct nuklear_sys::nk_window

#[repr(C)]
pub struct nk_window {
    pub seq: c_uint,
    pub name: nk_hash,
    pub name_string: [c_char; 64],
    pub flags: nk_flags,
    pub bounds: nk_rect,
    pub scrollbar: nk_scroll,
    pub buffer: nk_command_buffer,
    pub layout: *mut nk_panel,
    pub scrollbar_hiding_timer: f32,
    pub property: nk_property_state,
    pub popup: nk_popup_state,
    pub edit: nk_edit_state,
    pub scrolled: c_uint,
    pub tables: *mut nk_table,
    pub table_count: c_uint,
    pub next: *mut nk_window,
    pub prev: *mut nk_window,
    pub parent: *mut nk_window,
}

Fields

seq: c_uintname: nk_hashname_string: [c_char; 64]flags: nk_flagsbounds: nk_rectscrollbar: nk_scrollbuffer: nk_command_bufferlayout: *mut nk_panelscrollbar_hiding_timer: f32property: nk_property_statepopup: nk_popup_stateedit: nk_edit_statescrolled: c_uinttables: *mut nk_tabletable_count: c_uintnext: *mut nk_windowprev: *mut nk_windowparent: *mut nk_window

Trait Implementations

impl Clone for nk_window[src]

impl Copy for nk_window[src]

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