#[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_hash§seq: c_uint§old: c_uint§active: c_int§prev: c_int§cursor: c_int§sel_start: c_int§sel_end: c_int§scrollbar: nk_scroll§mode: c_uchar§single_line: c_ucharTrait Implementations§
Source§impl Clone for nk_edit_state
impl Clone for nk_edit_state
Source§fn clone(&self) -> nk_edit_state
fn clone(&self) -> nk_edit_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 Debug for nk_edit_state
impl Debug for nk_edit_state
Source§impl Default for nk_edit_state
impl Default for nk_edit_state
Source§fn default() -> nk_edit_state
fn default() -> nk_edit_state
Returns the “default value” for a type. Read more
impl Copy for nk_edit_state
Auto Trait Implementations§
impl Freeze for nk_edit_state
impl RefUnwindSafe for nk_edit_state
impl Send for nk_edit_state
impl Sync for nk_edit_state
impl Unpin for nk_edit_state
impl UnwindSafe for nk_edit_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