pub enum CommitData {
Keysym {
keysym: u32,
syncronous: bool,
},
Chars {
commited: Vec<u8>,
syncronous: bool,
},
Both {
keysym: u32,
commited: Vec<u8>,
syncronous: bool,
},
}
Variants§
Trait Implementations§
Source§impl Clone for CommitData
impl Clone for CommitData
Source§fn clone(&self) -> CommitData
fn clone(&self) -> CommitData
Returns a copy 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 CommitData
impl Debug for CommitData
Source§impl PartialEq for CommitData
impl PartialEq for CommitData
Source§impl XimRead for CommitData
impl XimRead for CommitData
Source§impl XimWrite for CommitData
impl XimWrite for CommitData
impl Eq for CommitData
impl StructuralPartialEq for CommitData
Auto Trait Implementations§
impl Freeze for CommitData
impl RefUnwindSafe for CommitData
impl Send for CommitData
impl Sync for CommitData
impl Unpin for CommitData
impl UnwindSafe for CommitData
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