[][src]Struct nuki_sys::nk_convert_config

#[repr(C)]pub struct nk_convert_config {
    pub global_alpha: f32,
    pub line_AA: nk_anti_aliasing,
    pub shape_AA: nk_anti_aliasing,
    pub circle_segment_count: c_uint,
    pub arc_segment_count: c_uint,
    pub curve_segment_count: c_uint,
    pub null: nk_draw_null_texture,
    pub vertex_layout: *const nk_draw_vertex_layout_element,
    pub vertex_size: nk_size,
    pub vertex_alignment: nk_size,
}

Fields

global_alpha: f32line_AA: nk_anti_aliasingshape_AA: nk_anti_aliasingcircle_segment_count: c_uintarc_segment_count: c_uintcurve_segment_count: c_uintnull: nk_draw_null_texturevertex_layout: *const nk_draw_vertex_layout_elementvertex_size: nk_sizevertex_alignment: nk_size

Trait Implementations

impl Clone for nk_convert_config[src]

impl Copy for nk_convert_config[src]

impl Debug for nk_convert_config[src]

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