Enum xim_parser::CommitData[][src]

pub enum CommitData {
    Keysym {
        keysym: u32,
        syncronous: bool,
    },
    Chars {
        commited: Vec<u8>,
        syncronous: bool,
    },
    Both {
        keysym: u32,
        commited: Vec<u8>,
        syncronous: bool,
    },
}

Variants

Keysym

Fields of Keysym

keysym: u32syncronous: bool
Chars

Fields of Chars

commited: Vec<u8>syncronous: bool
Both

Fields of Both

keysym: u32commited: Vec<u8>syncronous: bool

Trait Implementations

impl Clone for CommitData[src]

impl Debug for CommitData[src]

impl Eq for CommitData[src]

impl PartialEq<CommitData> for CommitData[src]

impl StructuralEq for CommitData[src]

impl StructuralPartialEq for CommitData[src]

impl XimRead for CommitData[src]

impl XimWrite for CommitData[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.