#[repr(C)]pub struct nk_panel {Show 18 fields
pub type_: nk_panel_type,
pub flags: nk_flags,
pub bounds: nk_rect,
pub offset_x: *mut nk_uint,
pub offset_y: *mut nk_uint,
pub at_x: f32,
pub at_y: f32,
pub max_x: f32,
pub footer_height: f32,
pub header_height: f32,
pub border: f32,
pub has_scrolling: c_uint,
pub clip: nk_rect,
pub menu: nk_menu_state,
pub row: nk_row_layout,
pub chart: nk_chart,
pub buffer: *mut nk_command_buffer,
pub parent: *mut nk_panel,
}Fields§
§type_: nk_panel_type§flags: nk_flags§bounds: nk_rect§offset_x: *mut nk_uint§offset_y: *mut nk_uint§at_x: f32§at_y: f32§max_x: f32§header_height: f32§border: f32§has_scrolling: c_uint§clip: nk_rect§row: nk_row_layout§chart: nk_chart§buffer: *mut nk_command_buffer§parent: *mut nk_panelTrait Implementations§
impl Copy for nk_panel
Auto Trait Implementations§
impl Freeze for nk_panel
impl RefUnwindSafe for nk_panel
impl !Send for nk_panel
impl !Sync for nk_panel
impl Unpin for nk_panel
impl UnwindSafe for nk_panel
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