]> git.lizzy.rs Git - rust.git/blob - library/alloc/src/lib.rs
Switch bootstrap cfgs
[rust.git] / library / alloc / src / lib.rs
1 //! # The Rust core allocation and collections library
2 //!
3 //! This library provides smart pointers and collections for managing
4 //! heap-allocated values.
5 //!
6 //! This library, like libcore, normally doesn’t need to be used directly
7 //! since its contents are re-exported in the [`std` crate](../std/index.html).
8 //! Crates that use the `#![no_std]` attribute however will typically
9 //! not depend on `std`, so they’d use this crate instead.
10 //!
11 //! ## Boxed values
12 //!
13 //! The [`Box`] type is a smart pointer type. There can only be one owner of a
14 //! [`Box`], and the owner can decide to mutate the contents, which live on the
15 //! heap.
16 //!
17 //! This type can be sent among threads efficiently as the size of a `Box` value
18 //! is the same as that of a pointer. Tree-like data structures are often built
19 //! with boxes because each node often has only one owner, the parent.
20 //!
21 //! ## Reference counted pointers
22 //!
23 //! The [`Rc`] type is a non-threadsafe reference-counted pointer type intended
24 //! for sharing memory within a thread. An [`Rc`] pointer wraps a type, `T`, and
25 //! only allows access to `&T`, a shared reference.
26 //!
27 //! This type is useful when inherited mutability (such as using [`Box`]) is too
28 //! constraining for an application, and is often paired with the [`Cell`] or
29 //! [`RefCell`] types in order to allow mutation.
30 //!
31 //! ## Atomically reference counted pointers
32 //!
33 //! The [`Arc`] type is the threadsafe equivalent of the [`Rc`] type. It
34 //! provides all the same functionality of [`Rc`], except it requires that the
35 //! contained type `T` is shareable. Additionally, [`Arc<T>`][`Arc`] is itself
36 //! sendable while [`Rc<T>`][`Rc`] is not.
37 //!
38 //! This type allows for shared access to the contained data, and is often
39 //! paired with synchronization primitives such as mutexes to allow mutation of
40 //! shared resources.
41 //!
42 //! ## Collections
43 //!
44 //! Implementations of the most common general purpose data structures are
45 //! defined in this library. They are re-exported through the
46 //! [standard collections library](../std/collections/index.html).
47 //!
48 //! ## Heap interfaces
49 //!
50 //! The [`alloc`](alloc/index.html) module defines the low-level interface to the
51 //! default global allocator. It is not compatible with the libc allocator API.
52 //!
53 //! [`Arc`]: sync
54 //! [`Box`]: boxed
55 //! [`Cell`]: core::cell
56 //! [`Rc`]: rc
57 //! [`RefCell`]: core::cell
58
59 // To run liballoc tests without x.py without ending up with two copies of liballoc, Miri needs to be
60 // able to "empty" this crate. See <https://github.com/rust-lang/miri-test-libstd/issues/4>.
61 // rustc itself never sets the feature, so this line has no affect there.
62 #![cfg(any(not(feature = "miri-test-libstd"), test, doctest))]
63 #![allow(unused_attributes)]
64 #![stable(feature = "alloc", since = "1.36.0")]
65 #![doc(
66     html_playground_url = "https://play.rust-lang.org/",
67     issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
68     test(no_crate_inject, attr(allow(unused_variables), deny(warnings)))
69 )]
70 #![doc(cfg_hide(
71     not(test),
72     not(any(test, bootstrap)),
73     any(not(feature = "miri-test-libstd"), test, doctest),
74     no_global_oom_handling,
75     not(no_global_oom_handling),
76     target_has_atomic = "ptr"
77 ))]
78 #![no_std]
79 #![needs_allocator]
80 //
81 // Lints:
82 #![deny(unsafe_op_in_unsafe_fn)]
83 #![warn(deprecated_in_future)]
84 #![warn(missing_debug_implementations)]
85 #![warn(missing_docs)]
86 #![allow(explicit_outlives_requirements)]
87 //
88 // Library features:
89 #![feature(alloc_layout_extra)]
90 #![feature(allocator_api)]
91 #![feature(array_chunks)]
92 #![feature(array_methods)]
93 #![feature(array_windows)]
94 #![feature(async_iterator)]
95 #![feature(coerce_unsized)]
96 #![cfg_attr(not(no_global_oom_handling), feature(const_alloc_error))]
97 #![feature(const_box)]
98 #![cfg_attr(not(no_global_oom_handling), feature(const_btree_new))]
99 #![feature(const_cow_is_borrowed)]
100 #![feature(const_convert)]
101 #![feature(const_size_of_val)]
102 #![feature(const_align_of_val)]
103 #![feature(const_ptr_read)]
104 #![feature(const_maybe_uninit_write)]
105 #![feature(const_maybe_uninit_as_mut_ptr)]
106 #![feature(const_refs_to_cell)]
107 #![feature(core_intrinsics)]
108 #![feature(const_eval_select)]
109 #![feature(const_pin)]
110 #![feature(dispatch_from_dyn)]
111 #![feature(exact_size_is_empty)]
112 #![feature(extend_one)]
113 #![feature(fmt_internals)]
114 #![feature(fn_traits)]
115 #![feature(inplace_iteration)]
116 #![feature(iter_advance_by)]
117 #![feature(layout_for_ptr)]
118 #![feature(maybe_uninit_slice)]
119 #![cfg_attr(test, feature(new_uninit))]
120 #![feature(nonnull_slice_from_raw_parts)]
121 #![feature(pattern)]
122 #![feature(ptr_internals)]
123 #![feature(receiver_trait)]
124 #![feature(set_ptr_value)]
125 #![feature(slice_group_by)]
126 #![feature(slice_ptr_get)]
127 #![feature(slice_ptr_len)]
128 #![feature(slice_range)]
129 #![feature(str_internals)]
130 #![feature(trusted_len)]
131 #![feature(trusted_random_access)]
132 #![feature(try_trait_v2)]
133 #![feature(unicode_internals)]
134 #![feature(unsize)]
135 //
136 // Language features:
137 #![feature(allocator_internals)]
138 #![feature(allow_internal_unstable)]
139 #![feature(associated_type_bounds)]
140 #![feature(box_syntax)]
141 #![feature(cfg_sanitize)]
142 #![feature(const_deref)]
143 #![feature(const_fn_trait_bound)]
144 #![feature(const_mut_refs)]
145 #![feature(const_ptr_write)]
146 #![feature(const_precise_live_drops)]
147 #![feature(const_trait_impl)]
148 #![feature(const_try)]
149 #![feature(dropck_eyepatch)]
150 #![feature(exclusive_range_pattern)]
151 #![feature(fundamental)]
152 #![cfg_attr(not(test), feature(generator_trait))]
153 #![feature(lang_items)]
154 #![feature(min_specialization)]
155 #![feature(negative_impls)]
156 #![feature(never_type)]
157 #![feature(nll)] // Not necessary, but here to test the `nll` feature.
158 #![feature(rustc_allow_const_fn_unstable)]
159 #![feature(rustc_attrs)]
160 #![feature(staged_api)]
161 #![cfg_attr(test, feature(test))]
162 #![feature(unboxed_closures)]
163 #![feature(unsized_fn_params)]
164 #![feature(c_unwind)]
165 //
166 // Rustdoc features:
167 #![feature(doc_cfg)]
168 #![feature(doc_cfg_hide)]
169 // Technically, this is a bug in rustdoc: rustdoc sees the documentation on `#[lang = slice_alloc]`
170 // blocks is for `&[T]`, which also has documentation using this feature in `core`, and gets mad
171 // that the feature-gate isn't enabled. Ideally, it wouldn't check for the feature gate for docs
172 // from other crates, but since this can only appear for lang items, it doesn't seem worth fixing.
173 #![feature(intra_doc_pointers)]
174
175 // Allow testing this library
176 #[cfg(test)]
177 #[macro_use]
178 extern crate std;
179 #[cfg(test)]
180 extern crate test;
181
182 // Module with internal macros used by other modules (needs to be included before other modules).
183 #[macro_use]
184 mod macros;
185
186 mod raw_vec;
187
188 // Heaps provided for low-level allocation strategies
189
190 pub mod alloc;
191
192 // Primitive types using the heaps above
193
194 // Need to conditionally define the mod from `boxed.rs` to avoid
195 // duplicating the lang-items when building in test cfg; but also need
196 // to allow code to have `use boxed::Box;` declarations.
197 #[cfg(not(test))]
198 pub mod boxed;
199 #[cfg(test)]
200 mod boxed {
201     pub use std::boxed::Box;
202 }
203 pub mod borrow;
204 pub mod collections;
205 pub mod fmt;
206 pub mod rc;
207 pub mod slice;
208 pub mod str;
209 pub mod string;
210 #[cfg(target_has_atomic = "ptr")]
211 pub mod sync;
212 #[cfg(all(not(no_global_oom_handling), target_has_atomic = "ptr"))]
213 pub mod task;
214 #[cfg(test)]
215 mod tests;
216 pub mod vec;
217
218 #[doc(hidden)]
219 #[unstable(feature = "liballoc_internals", issue = "none", reason = "implementation detail")]
220 pub mod __export {
221     pub use core::format_args;
222 }