#[repr(C)]pub struct nk_text_undo_state {
pub undo_rec: [nk_text_undo_record; 99],
pub undo_char: [nk_rune; 999],
pub undo_point: c_short,
pub redo_point: c_short,
pub undo_char_point: c_short,
pub redo_char_point: c_short,
}Fields§
§undo_rec: [nk_text_undo_record; 99]§undo_char: [nk_rune; 999]§undo_point: c_short§redo_point: c_short§undo_char_point: c_short§redo_char_point: c_shortTrait Implementations§
Source§impl Clone for nk_text_undo_state
impl Clone for nk_text_undo_state
Source§fn clone(&self) -> nk_text_undo_state
fn clone(&self) -> nk_text_undo_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_text_undo_state
impl Default for nk_text_undo_state
impl Copy for nk_text_undo_state
Auto Trait Implementations§
impl Freeze for nk_text_undo_state
impl RefUnwindSafe for nk_text_undo_state
impl Send for nk_text_undo_state
impl Sync for nk_text_undo_state
impl Unpin for nk_text_undo_state
impl UnwindSafe for nk_text_undo_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