rust/src/liballoc/lib.rs

184 lines
6.0 KiB
Rust
Raw Normal View History

2017-06-13 15:52:59 -07:00
// Copyright 2014-2017 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2017-06-13 15:52:59 -07:00
//! # The Rust core allocation and collections library
//!
2017-06-13 15:52:59 -07:00
//! This library provides smart pointers and collections for managing
//! heap-allocated values.
//!
//! This library, like libcore, normally doesnt need to be used directly
//! since its contents are re-exported in the [`std` crate](../std/index.html).
//! Crates that use the `#![no_std]` attribute however will typically
//! not depend on `std`, so theyd use this crate instead.
//!
//! ## Boxed values
//!
//! The [`Box`](boxed/index.html) type is a smart pointer type. There can
//! only be one owner of a `Box`, and the owner can decide to mutate the
//! contents, which live on the heap.
//!
//! This type can be sent among threads efficiently as the size of a `Box` value
2014-08-04 22:48:39 +12:00
//! is the same as that of a pointer. Tree-like data structures are often built
//! with boxes because each node often has only one owner, the parent.
//!
//! ## Reference counted pointers
//!
//! The [`Rc`](rc/index.html) type is a non-threadsafe reference-counted pointer
//! type intended for sharing memory within a thread. An `Rc` pointer wraps a
//! type, `T`, and only allows access to `&T`, a shared reference.
//!
2014-08-04 22:48:39 +12:00
//! This type is useful when inherited mutability (such as using `Box`) is too
//! constraining for an application, and is often paired with the `Cell` or
//! `RefCell` types in order to allow mutation.
//!
//! ## Atomically reference counted pointers
//!
//! The [`Arc`](sync/index.html) type is the threadsafe equivalent of the `Rc`
//! type. It provides all the same functionality of `Rc`, except it requires
//! that the contained type `T` is shareable. Additionally, `Arc<T>` is itself
//! sendable while `Rc<T>` is not.
//!
2017-01-28 22:16:16 +00:00
//! This type allows for shared access to the contained data, and is often
//! paired with synchronization primitives such as mutexes to allow mutation of
//! shared resources.
//!
2017-06-13 15:52:59 -07:00
//! ## Collections
//!
//! Implementations of the most common general purpose data structures are
//! defined in this library. They are re-exported through the
2017-06-13 15:52:59 -07:00
//! [standard collections library](../std/collections/index.html).
//!
//! ## Heap interfaces
//!
//! The [`alloc`](alloc/index.html) module defines the low-level interface to the
//! default global allocator. It is not compatible with the libc allocator API.
#![allow(unused_attributes)]
#![unstable(feature = "alloc",
reason = "this library is unlikely to be stabilized in its current \
form or name",
issue = "27783")]
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
html_root_url = "https://doc.rust-lang.org/nightly/",
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
2015-11-03 14:02:48 +00:00
test(no_crate_inject, attr(allow(unused_variables), deny(warnings))))]
#![no_std]
#![needs_allocator]
2017-06-13 15:52:59 -07:00
#![deny(missing_debug_implementations)]
2017-06-13 15:52:59 -07:00
#![cfg_attr(test, allow(deprecated))] // rand
#![cfg_attr(not(test), feature(exact_size_is_empty))]
2017-07-07 15:31:03 -07:00
#![cfg_attr(not(test), feature(generator_trait))]
2017-06-13 15:52:59 -07:00
#![cfg_attr(test, feature(rand, test))]
#![feature(allocator_api)]
2017-06-13 15:52:59 -07:00
#![feature(allow_internal_unstable)]
2018-06-08 16:45:27 -04:00
#![feature(arbitrary_self_types)]
#![feature(ascii_ctype)]
#![feature(box_into_raw_non_null)]
2017-06-13 15:52:59 -07:00
#![feature(box_patterns)]
#![feature(box_syntax)]
#![feature(cfg_target_has_atomic)]
#![feature(coerce_unsized)]
#![feature(collections_range)]
#![feature(const_fn)]
#![feature(core_intrinsics)]
#![feature(custom_attribute)]
#![feature(dropck_eyepatch)]
2017-06-13 15:52:59 -07:00
#![feature(exact_size_is_empty)]
#![feature(fmt_internals)]
#![feature(from_ref)]
#![feature(fundamental)]
#![feature(futures_api)]
2015-04-27 14:10:49 -07:00
#![feature(lang_items)]
#![feature(libc)]
#![feature(needs_allocator)]
2015-01-11 11:09:53 +01:00
#![feature(optin_builtin_traits)]
2017-06-13 15:52:59 -07:00
#![feature(pattern)]
2018-03-15 12:55:37 -07:00
#![feature(pin)]
#![feature(ptr_internals)]
#![feature(ptr_offset_from)]
#![feature(rustc_attrs)]
2017-06-13 15:52:59 -07:00
#![feature(specialization)]
2018-05-05 00:33:20 -04:00
#![feature(split_ascii_whitespace)]
#![feature(staged_api)]
2017-06-13 15:52:59 -07:00
#![feature(str_internals)]
#![feature(trusted_len)]
#![feature(try_reserve)]
#![feature(unboxed_closures)]
#![feature(unicode_internals)]
#![feature(unsize)]
#![feature(allocator_internals)]
2017-10-09 14:45:41 +02:00
#![feature(on_unimplemented)]
#![feature(exact_chunks)]
2018-03-02 13:50:59 +09:00
#![feature(pointer_methods)]
#![feature(inclusive_range_methods)]
2018-04-26 22:38:39 -05:00
#![feature(rustc_const_unstable)]
2018-05-05 16:34:43 +08:00
#![feature(const_vec_new)]
2018-04-17 00:40:07 -04:00
#![cfg_attr(not(test), feature(fn_traits, i128))]
#![cfg_attr(test, feature(test))]
// Allow testing this library
2015-09-24 10:00:54 +12:00
#[cfg(test)]
#[macro_use]
extern crate std;
2017-06-13 15:52:59 -07:00
#[cfg(test)]
extern crate test;
#[cfg(test)]
extern crate rand;
2017-06-13 15:52:59 -07:00
2016-10-15 16:32:14 +01:00
// Module with internal macros used by other modules (needs to be included before other modules).
#[macro_use]
mod macros;
// Heaps provided for low-level allocation strategies
pub mod alloc;
#[unstable(feature = "futures_api",
reason = "futures in libcore are unstable",
issue = "50547")]
pub mod task;
// Primitive types using the heaps above
// Need to conditionally define the mod from `boxed.rs` to avoid
// duplicating the lang-items when building in test cfg; but also need
// to allow code to have `use boxed::Box;` declarations.
#[cfg(not(test))]
pub mod boxed;
#[cfg(test)]
2015-09-24 10:00:54 +12:00
mod boxed {
pub use std::boxed::Box;
2015-09-24 10:00:54 +12:00
}
#[cfg(test)]
mod boxed_test;
pub mod collections;
#[cfg(any(
all(stage0, target_has_atomic = "ptr"),
all(not(stage0), target_has_atomic = "ptr", target_has_atomic = "cas")
))]
pub mod sync;
pub mod rc;
2015-07-09 21:57:21 -07:00
pub mod raw_vec;
2017-06-13 15:52:59 -07:00
pub mod borrow;
pub mod fmt;
pub mod slice;
pub mod str;
pub mod string;
pub mod vec;
#[cfg(not(test))]
mod std {
pub use core::ops; // RangeFull
}