#[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_int§prev: c_int§buffer: [c_char; 64]§length: c_int§cursor: c_int§select_start: c_int§select_end: c_int§name: nk_hash§seq: c_uint§old: c_uint§state: c_intTrait Implementations§
Source§impl Clone for nk_property_state
impl Clone for nk_property_state
Source§fn clone(&self) -> nk_property_state
fn clone(&self) -> nk_property_state
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for nk_property_state
impl Default for nk_property_state
impl Copy for nk_property_state
Auto Trait Implementations§
impl Freeze for nk_property_state
impl RefUnwindSafe for nk_property_state
impl Send for nk_property_state
impl Sync for nk_property_state
impl Unpin for nk_property_state
impl UnwindSafe for nk_property_state
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more