[][src]Struct nuki_sys::nk_draw_list

#[repr(C)]pub struct nk_draw_list {
    pub clip_rect: nk_rect,
    pub circle_vtx: [nk_vec2; 12],
    pub config: nk_convert_config,
    pub buffer: *mut nk_buffer,
    pub vertices: *mut nk_buffer,
    pub elements: *mut nk_buffer,
    pub element_count: c_uint,
    pub vertex_count: c_uint,
    pub cmd_count: c_uint,
    pub cmd_offset: nk_size,
    pub path_count: c_uint,
    pub path_offset: c_uint,
    pub line_AA: nk_anti_aliasing,
    pub shape_AA: nk_anti_aliasing,
    pub userdata: nk_handle,
}

Fields

clip_rect: nk_rectcircle_vtx: [nk_vec2; 12]config: nk_convert_configbuffer: *mut nk_buffervertices: *mut nk_bufferelements: *mut nk_bufferelement_count: c_uintvertex_count: c_uintcmd_count: c_uintcmd_offset: nk_sizepath_count: c_uintpath_offset: c_uintline_AA: nk_anti_aliasingshape_AA: nk_anti_aliasinguserdata: nk_handle

Trait Implementations

impl Clone for nk_draw_list[src]

impl Copy for nk_draw_list[src]

impl Default for nk_draw_list[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.