maliit 0.2.0

Maliit framework client library
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Debug, Error)]
pub enum MaliitError {
    #[error("D-Bus error: {0}")]
    Dbus(#[from] dbus::Error),
    #[error("IME not available")]
    NotAvailable,
}