#[repr(C)]pub struct nk_popup_state {
pub win: *mut nk_window,
pub type_: nk_panel_type,
pub buf: nk_popup_buffer,
pub name: nk_hash,
pub active: c_int,
pub combo_count: c_uint,
pub con_count: c_uint,
pub con_old: c_uint,
pub active_con: c_uint,
pub header: nk_rect,
}Fields§
§win: *mut nk_window§type_: nk_panel_type§buf: nk_popup_buffer§name: nk_hash§active: c_int§combo_count: c_uint§con_count: c_uint§con_old: c_uint§active_con: c_uint§header: nk_rectTrait Implementations§
Source§impl Clone for nk_popup_state
impl Clone for nk_popup_state
Source§fn clone(&self) -> nk_popup_state
fn clone(&self) -> nk_popup_state
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for nk_popup_state
impl Debug for nk_popup_state
Source§impl Default for nk_popup_state
impl Default for nk_popup_state
impl Copy for nk_popup_state
Auto Trait Implementations§
impl Freeze for nk_popup_state
impl RefUnwindSafe for nk_popup_state
impl !Send for nk_popup_state
impl !Sync for nk_popup_state
impl Unpin for nk_popup_state
impl UnwindSafe for nk_popup_state
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