#[repr(C)]pub struct nk_window {Show 18 fields
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_uint§name: nk_hash§name_string: [c_char; 64]§flags: nk_flags§bounds: nk_rect§scrollbar: nk_scroll§buffer: nk_command_buffer§layout: *mut nk_panel§scrollbar_hiding_timer: f32§property: nk_property_state§popup: nk_popup_state§edit: nk_edit_state§scrolled: c_uint§tables: *mut nk_table§table_count: c_uint§next: *mut nk_window§prev: *mut nk_window§parent: *mut nk_windowTrait Implementations§
Auto Trait Implementations§
impl Freeze for nk_window
impl RefUnwindSafe for nk_window
impl !Send for nk_window
impl !Sync for nk_window
impl Unpin for nk_window
impl UnwindSafe for nk_window
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more