gsettings_desktop_schemas/
lib.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3//! # GSETTINGS-DESKTOP-SCHEMAS bindings
4//!
5//! This library contains safe Rust bindings for gsetting-desktop-schemas.
6
7#![cfg_attr(feature = "dox", feature(doc_cfg))]
8
9pub use ffi;
10
11// no runtime to initialize
12#[allow(unused_macros)]
13macro_rules! assert_initialized_main_thread {
14    () => {};
15}
16
17// No-op
18macro_rules! skip_assert_initialized {
19    () => {};
20}
21
22#[allow(unused_imports)]
23mod auto;
24pub use auto::*;