[][src]Struct nuki_sys::nk_edit_state

#[repr(C)]pub struct nk_edit_state {
    pub name: nk_hash,
    pub seq: c_uint,
    pub old: c_uint,
    pub active: c_int,
    pub prev: c_int,
    pub cursor: c_int,
    pub sel_start: c_int,
    pub sel_end: c_int,
    pub scrollbar: nk_scroll,
    pub mode: c_uchar,
    pub single_line: c_uchar,
}

Fields

name: nk_hashseq: c_uintold: c_uintactive: c_intprev: c_intcursor: c_intsel_start: c_intsel_end: c_intscrollbar: nk_scrollmode: c_ucharsingle_line: c_uchar

Trait Implementations

impl Clone for nk_edit_state[src]

impl Copy for nk_edit_state[src]

impl Debug for nk_edit_state[src]

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