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

impl Default for nk_edit_state[src]

impl Clone for nk_edit_state[src]

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

Performs copy-assignment from source. Read more

impl Debug for nk_edit_state[src]

Auto Trait Implementations

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.