[][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 Copy for nk_window[src]

impl Default for nk_window[src]

impl Clone for nk_window[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for nk_window

impl !Sync for nk_window

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.