[][src]Struct nuklear_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 Copy for nk_text_edit[src]

impl Default for nk_text_edit[src]

impl Clone for nk_text_edit[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for nk_text_edit

impl !Sync for nk_text_edit

Blanket Implementations

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.