#[repr(C)]
pub union nk_page_data {
pub tbl: nk_table,
pub pan: nk_panel,
pub win: nk_window,
/* private fields */
}Fields§
§tbl: nk_table§pan: nk_panel§win: nk_windowTrait Implementations§
Source§impl Clone for nk_page_data
impl Clone for nk_page_data
Source§fn clone(&self) -> nk_page_data
fn clone(&self) -> nk_page_data
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 Default for nk_page_data
impl Default for nk_page_data
impl Copy for nk_page_data
Auto Trait Implementations§
impl Freeze for nk_page_data
impl RefUnwindSafe for nk_page_data
impl !Send for nk_page_data
impl !Sync for nk_page_data
impl Unpin for nk_page_data
impl UnwindSafe for nk_page_data
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