[][src]Struct nuki_sys::nk_property_state

#[repr(C)]pub struct nk_property_state {
    pub active: c_int,
    pub prev: c_int,
    pub buffer: [c_char; 64],
    pub length: c_int,
    pub cursor: c_int,
    pub select_start: c_int,
    pub select_end: c_int,
    pub name: nk_hash,
    pub seq: c_uint,
    pub old: c_uint,
    pub state: c_int,
}

Fields

active: c_intprev: c_intbuffer: [c_char; 64]length: c_intcursor: c_intselect_start: c_intselect_end: c_intname: nk_hashseq: c_uintold: c_uintstate: c_int

Trait Implementations

impl Clone for nk_property_state[src]

impl Copy for nk_property_state[src]

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