1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//! Reis 🍚 provides a Rust version of EI 🥚 and EIS 🍨 for emulated input on Wayland.
//!
//! See the upstream project [libei](https://gitlab.freedesktop.org/libinput/libei) for more information.
//!
//! This library is currently **incomplete** and subject to change. It should probably do more to provide a more high level API that handles the things a client/server needs to deal with.
//!
//! Setting the env var `REIS_DEBUG` will make the library print ei messages it sends and receives.
//!
//! # Features
//!
//! `reis` has the following Cargo features:
//!
//! - `tokio`: Enables tokio support for clients.
//! - `calloop`: Enables calloop sources for EIS implementations. Somewhat experimental and
//! incomplete.
// TODO split up
pub use PendingRequestResult; // XXX types? names?
pub use Error;
// XXX reorganize?
// XXX ^
pub use Object;
pub use enumflags2;
pub use Interface;
pub use ParseError;
//#[doc(hidden)] // TODO
// TODO versioning?