This commit applies the FCP decisions made by the libs team for the 1.10 cycle, including both new stabilizations and deprecations. Specifically, the list of APIs is: Stabilized: * `os::windows::fs::OpenOptionsExt::access_mode` * `os::windows::fs::OpenOptionsExt::share_mode` * `os::windows::fs::OpenOptionsExt::custom_flags` * `os::windows::fs::OpenOptionsExt::attributes` * `os::windows::fs::OpenOptionsExt::security_qos_flags` * `os::unix::fs::OpenOptionsExt::custom_flags` * `sync::Weak::new` * `Default for sync::Weak` * `panic::set_hook` * `panic::take_hook` * `panic::PanicInfo` * `panic::PanicInfo::payload` * `panic::PanicInfo::location` * `panic::Location` * `panic::Location::file` * `panic::Location::line` * `ffi::CStr::from_bytes_with_nul` * `ffi::CStr::from_bytes_with_nul_unchecked` * `ffi::FromBytesWithNulError` * `fs::Metadata::modified` * `fs::Metadata::accessed` * `fs::Metadata::created` * `sync::atomic::Atomic{Usize,Isize,Bool,Ptr}::compare_exchange` * `sync::atomic::Atomic{Usize,Isize,Bool,Ptr}::compare_exchange_weak` * `collections::{btree,hash}_map::{Occupied,Vacant,}Entry::key` * `os::unix::net::{UnixStream, UnixListener, UnixDatagram, SocketAddr}` * `SocketAddr::is_unnamed` * `SocketAddr::as_pathname` * `UnixStream::connect` * `UnixStream::pair` * `UnixStream::try_clone` * `UnixStream::local_addr` * `UnixStream::peer_addr` * `UnixStream::set_read_timeout` * `UnixStream::set_write_timeout` * `UnixStream::read_timeout` * `UnixStream::write_Timeout` * `UnixStream::set_nonblocking` * `UnixStream::take_error` * `UnixStream::shutdown` * Read/Write/RawFd impls for `UnixStream` * `UnixListener::bind` * `UnixListener::accept` * `UnixListener::try_clone` * `UnixListener::local_addr` * `UnixListener::set_nonblocking` * `UnixListener::take_error` * `UnixListener::incoming` * RawFd impls for `UnixListener` * `UnixDatagram::bind` * `UnixDatagram::unbound` * `UnixDatagram::pair` * `UnixDatagram::connect` * `UnixDatagram::try_clone` * `UnixDatagram::local_addr` * `UnixDatagram::peer_addr` * `UnixDatagram::recv_from` * `UnixDatagram::recv` * `UnixDatagram::send_to` * `UnixDatagram::send` * `UnixDatagram::set_read_timeout` * `UnixDatagram::set_write_timeout` * `UnixDatagram::read_timeout` * `UnixDatagram::write_timeout` * `UnixDatagram::set_nonblocking` * `UnixDatagram::take_error` * `UnixDatagram::shutdown` * RawFd impls for `UnixDatagram` * `{BTree,Hash}Map::values_mut` * `<[_]>::binary_search_by_key` Deprecated: * `StaticCondvar` - this, and all other static synchronization primitives below, are usable today through the lazy-static crate on stable Rust today. Additionally, we'd like the non-static versions to be directly usable in a static context one day, so they're unlikely to be the final forms of the APIs in any case. * `CONDVAR_INIT` * `StaticMutex` * `MUTEX_INIT` * `StaticRwLock` * `RWLOCK_INIT` * `iter::Peekable::is_empty` Closes #27717 Closes #27720 cc #27784 (but encode methods still exist) Closes #30014 Closes #30425 Closes #30449 Closes #31190 Closes #31399 Closes #31767 Closes #32111 Closes #32281 Closes #32312 Closes #32551 Closes #33018
127 lines
4.4 KiB
Rust
127 lines
4.4 KiB
Rust
// Copyright 2014 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.
|
|
|
|
//! # The Rust core allocation library
|
|
//!
|
|
//! This is the lowest level library through which allocation in Rust can be
|
|
//! performed.
|
|
//!
|
|
//! This library, like libcore, is not intended for general usage, but rather as
|
|
//! a building block of other libraries. The types and interfaces in this
|
|
//! library are reexported through the [standard library](../std/index.html),
|
|
//! and should not be used through this library.
|
|
//!
|
|
//! Currently, there are four major definitions in this library.
|
|
//!
|
|
//! ## 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
|
|
//! 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.
|
|
//!
|
|
//! 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`](arc/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.
|
|
//!
|
|
//! This types allows for shared access to the contained data, and is often
|
|
//! paired with synchronization primitives such as mutexes to allow mutation of
|
|
//! shared resources.
|
|
//!
|
|
//! ## Heap interfaces
|
|
//!
|
|
//! The [`heap`](heap/index.html) module defines the low-level interface to the
|
|
//! default global allocator. It is not compatible with the libc allocator API.
|
|
|
|
#![crate_name = "alloc"]
|
|
#![crate_type = "rlib"]
|
|
#![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/",
|
|
test(no_crate_inject, attr(allow(unused_variables), deny(warnings))))]
|
|
#![no_std]
|
|
#![needs_allocator]
|
|
#![cfg_attr(not(stage0), deny(warnings))]
|
|
|
|
#![feature(allocator)]
|
|
#![feature(box_syntax)]
|
|
#![feature(coerce_unsized)]
|
|
#![feature(const_fn)]
|
|
#![feature(core_intrinsics)]
|
|
#![feature(custom_attribute)]
|
|
#![feature(dropck_parametricity)]
|
|
#![feature(fundamental)]
|
|
#![feature(lang_items)]
|
|
#![feature(needs_allocator)]
|
|
#![feature(optin_builtin_traits)]
|
|
#![feature(placement_in_syntax)]
|
|
#![feature(shared)]
|
|
#![feature(staged_api)]
|
|
#![feature(unboxed_closures)]
|
|
#![feature(unique)]
|
|
#![feature(unsafe_no_drop_flag, filling_drop)]
|
|
#![feature(unsize)]
|
|
|
|
#![cfg_attr(not(test), feature(raw, fn_traits, placement_new_protocol))]
|
|
#![cfg_attr(test, feature(test, box_heap))]
|
|
|
|
// Allow testing this library
|
|
|
|
#[cfg(test)]
|
|
#[macro_use]
|
|
extern crate std;
|
|
|
|
// Heaps provided for low-level allocation strategies
|
|
|
|
pub mod heap;
|
|
|
|
// 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::HEAP;`
|
|
// and `use boxed::Box;` declarations.
|
|
#[cfg(not(test))]
|
|
pub mod boxed;
|
|
#[cfg(test)]
|
|
mod boxed {
|
|
pub use std::boxed::{Box, HEAP};
|
|
}
|
|
#[cfg(test)]
|
|
mod boxed_test;
|
|
pub mod arc;
|
|
pub mod rc;
|
|
pub mod raw_vec;
|
|
pub mod oom;
|
|
|
|
pub use oom::oom;
|