[][src]Struct nuklear_sys::nk_context

#[repr(C)]
pub struct nk_context {
    pub input: nk_input,
    pub style: nk_style,
    pub memory: nk_buffer,
    pub clip: nk_clipboard,
    pub last_widget_state: nk_flags,
    pub button_behavior: nk_button_behavior,
    pub stacks: nk_configuration_stacks,
    pub delta_time_seconds: f32,
    pub draw_list: nk_draw_list,
    pub userdata: nk_handle,
    pub text_edit: nk_text_edit,
    pub overlay: nk_command_buffer,
    pub build: c_int,
    pub use_pool: c_int,
    pub pool: nk_pool,
    pub begin: *mut nk_window,
    pub end: *mut nk_window,
    pub active: *mut nk_window,
    pub current: *mut nk_window,
    pub freelist: *mut nk_page_element,
    pub count: c_uint,
    pub seq: c_uint,
}

Fields

input: nk_inputstyle: nk_stylememory: nk_bufferclip: nk_clipboardlast_widget_state: nk_flagsbutton_behavior: nk_button_behaviorstacks: nk_configuration_stacksdelta_time_seconds: f32draw_list: nk_draw_listuserdata: nk_handletext_edit: nk_text_editoverlay: nk_command_bufferbuild: c_intuse_pool: c_intpool: nk_poolbegin: *mut nk_windowend: *mut nk_windowactive: *mut nk_windowcurrent: *mut nk_windowfreelist: *mut nk_page_elementcount: c_uintseq: c_uint

Trait Implementations

impl Clone for nk_context[src]

impl Copy for nk_context[src]

impl Default for nk_context[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> 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, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.