javascriptcore/
lib.rs

1// // Copyright 2013-2017, The Gtk-rs Project Developers.
2// // See the COPYRIGHT file at the top-level directory of this distribution.
3// // Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
4#![cfg_attr(feature = "dox", feature(doc_cfg))]
5
6pub use ffi;
7pub use glib;
8
9mod auto;
10mod global_context_ref;
11mod string_ref;
12mod value_ref;
13
14pub use auto::*;
15pub use global_context_ref::*;
16pub use string_ref::*;
17pub use value_ref::*;
18
19pub mod prelude {
20    pub use super::auto::traits::*;
21}
22
23pub mod builders {
24    pub use super::auto::builders::*;
25}