[][src]Struct nuki_sys::nk_text_edit

#[repr(C)]pub struct nk_text_edit {
    pub clip: nk_clipboard,
    pub string: nk_str,
    pub filter: nk_plugin_filter,
    pub scrollbar: nk_vec2,
    pub cursor: c_int,
    pub select_start: c_int,
    pub select_end: c_int,
    pub mode: c_uchar,
    pub cursor_at_end_of_line: c_uchar,
    pub initialized: c_uchar,
    pub has_preferred_x: c_uchar,
    pub single_line: c_uchar,
    pub active: c_uchar,
    pub padding1: c_uchar,
    pub preferred_x: f32,
    pub undo: nk_text_undo_state,
}

Fields

clip: nk_clipboardstring: nk_strfilter: nk_plugin_filterscrollbar: nk_vec2cursor: c_intselect_start: c_intselect_end: c_intmode: c_ucharcursor_at_end_of_line: c_ucharinitialized: c_ucharhas_preferred_x: c_ucharsingle_line: c_ucharactive: c_ucharpadding1: c_ucharpreferred_x: f32undo: nk_text_undo_state

Trait Implementations

impl Clone for nk_text_edit[src]

impl Copy for nk_text_edit[src]

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