]> git.lizzy.rs Git - rust.git/blob - src/librustc_data_structures/lib.rs
dd90cf7ae19e45bf246a9f2ca36a2001fd152ef6
[rust.git] / src / librustc_data_structures / lib.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Various data structures used by the Rust compiler. The intention
12 //! is that code in here should be not be *specific* to rustc, so that
13 //! it can be easily unit tested and so forth.
14 //!
15 //! # Note
16 //!
17 //! This API is completely unstable and subject to change.
18
19 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
20       html_favicon_url = "https://www.rust-lang.org/favicon.ico",
21       html_root_url = "https://doc.rust-lang.org/nightly/")]
22
23 #![feature(unboxed_closures)]
24 #![feature(fn_traits)]
25 #![feature(unsize)]
26 #![feature(specialization)]
27 #![feature(optin_builtin_traits)]
28 #![feature(macro_vis_matcher)]
29 #![feature(allow_internal_unstable)]
30 #![feature(vec_resize_with)]
31
32 #![cfg_attr(unix, feature(libc))]
33 #![cfg_attr(test, feature(test))]
34
35 extern crate core;
36 extern crate ena;
37 #[macro_use]
38 extern crate log;
39 extern crate serialize as rustc_serialize; // used by deriving
40 #[cfg(unix)]
41 extern crate libc;
42 extern crate parking_lot;
43 #[macro_use]
44 extern crate cfg_if;
45 extern crate stable_deref_trait;
46 extern crate rustc_rayon as rayon;
47 extern crate rustc_rayon_core as rayon_core;
48 extern crate rustc_hash;
49
50 // See librustc_cratesio_shim/Cargo.toml for a comment explaining this.
51 #[allow(unused_extern_crates)]
52 extern crate rustc_cratesio_shim;
53
54 pub use rustc_serialize::hex::ToHex;
55
56 pub mod accumulate_vec;
57 pub mod array_vec;
58 pub mod base_n;
59 pub mod bitslice;
60 pub mod bitvec;
61 pub mod flock;
62 pub mod fx;
63 pub mod graph;
64 pub mod indexed_set;
65 pub mod indexed_vec;
66 pub mod obligation_forest;
67 pub mod owning_ref;
68 pub mod ptr_key;
69 pub mod sip128;
70 pub mod small_vec;
71 pub mod snapshot_map;
72 pub use ena::snapshot_vec;
73 pub mod sorted_map;
74 pub mod stable_hasher;
75 pub mod sync;
76 pub mod tiny_list;
77 pub mod transitive_relation;
78 pub mod tuple_slice;
79 pub use ena::unify;
80 pub mod work_queue;
81
82 pub struct OnDrop<F: Fn()>(pub F);
83
84 impl<F: Fn()> OnDrop<F> {
85       /// Forgets the function which prevents it from running.
86       /// Ensure that the function owns no memory, otherwise it will be leaked.
87       pub fn disable(self) {
88             std::mem::forget(self);
89       }
90 }
91
92 impl<F: Fn()> Drop for OnDrop<F> {
93       fn drop(&mut self) {
94             (self.0)();
95       }
96 }
97
98 // See comments in src/librustc/lib.rs
99 #[doc(hidden)]
100 pub fn __noop_fix_for_27438() {}