1
2
3
4
5
6
7
8
9
10
11
12
13
//! # SafeX - Safe x11 binding for rust
//! safex is a high-level binding that allows the Rust language to safely use the x11 API.
//!

#[cfg(feature = "glx")]
pub mod glx;
#[cfg(feature = "xlib")]
pub mod xlib;

/// Specify the color
pub enum Color {
    Rgb(u16, u16, u16),
}