clay-layout 0.4.0

Rust bindings for Clay, a UI layout library written in C.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(clippy::module_inception)]

#[cfg(not(feature = "debug"))]
mod bindings;
#[cfg(feature = "debug")]
mod bindings_debug;

#[cfg(not(feature = "debug"))]
pub use self::bindings::*;
#[cfg(feature = "debug")]
pub use self::bindings_debug::*;