core/
lib.rs

1//! # The Rust Core Library
2//!
3//! The Rust Core Library is the dependency-free[^free] foundation of [The
4//! Rust Standard Library](../std/index.html). It is the portable glue
5//! between the language and its libraries, defining the intrinsic and
6//! primitive building blocks of all Rust code. It links to no
7//! upstream libraries, no system libraries, and no libc.
8//!
9//! [^free]: Strictly speaking, there are some symbols which are needed but
10//!          they aren't always necessary.
11//!
12//! The core library is *minimal*: it isn't even aware of heap allocation,
13//! nor does it provide concurrency or I/O. These things require
14//! platform integration, and this library is platform-agnostic.
15//!
16//! # How to use the core library
17//!
18//! Please note that all of these details are currently not considered stable.
19//!
20// FIXME: Fill me in with more detail when the interface settles
21//! This library is built on the assumption of a few existing symbols:
22//!
23//! * `memcpy`, `memmove`, `memset`, `memcmp`, `bcmp`, `strlen` - These are core memory routines
24//!   which are generated by Rust codegen backends. Additionally, this library can make explicit
25//!   calls to `strlen`. Their signatures are the same as found in C, but there are extra
26//!   assumptions about their semantics: For `memcpy`, `memmove`, `memset`, `memcmp`, and `bcmp`, if
27//!   the `n` parameter is 0, the function is assumed to not be UB, even if the pointers are NULL or
28//!   dangling. (Note that making extra assumptions about these functions is common among compilers:
29//!   [clang](https://reviews.llvm.org/D86993) and [GCC](https://gcc.gnu.org/onlinedocs/gcc/Standards.html#C-Language) do the same.)
30//!   These functions are often provided by the system libc, but can also be provided by the
31//!   [compiler-builtins crate](https://crates.io/crates/compiler_builtins).
32//!   Note that the library does not guarantee that it will always make these assumptions, so Rust
33//!   user code directly calling the C functions should follow the C specification! The advice for
34//!   Rust user code is to call the functions provided by this library instead (such as
35//!   `ptr::copy`).
36//!
37//! * Panic handler - This function takes one argument, a `&panic::PanicInfo`. It is up to consumers of this core
38//!   library to define this panic function; it is only required to never
39//!   return. You should mark your implementation using `#[panic_handler]`.
40//!
41//! * `rust_eh_personality` - is used by the failure mechanisms of the
42//!   compiler. This is often mapped to GCC's personality function, but crates
43//!   which do not trigger a panic can be assured that this function is never
44//!   called. The `lang` attribute is called `eh_personality`.
45
46#![stable(feature = "core", since = "1.6.0")]
47#![doc(
48    html_playground_url = "https://play.rust-lang.org/",
49    issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
50    test(no_crate_inject, attr(deny(warnings))),
51    test(attr(allow(dead_code, deprecated, unused_variables, unused_mut)))
52)]
53#![doc(rust_logo)]
54#![doc(auto_cfg(hide(
55    no_fp_fmt_parse,
56    target_pointer_width = "16",
57    target_pointer_width = "32",
58    target_pointer_width = "64",
59    target_has_atomic = "8",
60    target_has_atomic = "16",
61    target_has_atomic = "32",
62    target_has_atomic = "64",
63    target_has_atomic = "ptr",
64    target_has_atomic_equal_alignment = "8",
65    target_has_atomic_equal_alignment = "16",
66    target_has_atomic_equal_alignment = "32",
67    target_has_atomic_equal_alignment = "64",
68    target_has_atomic_equal_alignment = "ptr",
69    target_has_atomic_load_store = "8",
70    target_has_atomic_load_store = "16",
71    target_has_atomic_load_store = "32",
72    target_has_atomic_load_store = "64",
73    target_has_atomic_load_store = "ptr",
74)))]
75#![no_core]
76#![rustc_coherence_is_core]
77#![rustc_preserve_ub_checks]
78//
79// Lints:
80#![deny(rust_2021_incompatible_or_patterns)]
81#![deny(unsafe_op_in_unsafe_fn)]
82#![deny(fuzzy_provenance_casts)]
83#![warn(deprecated_in_future)]
84#![warn(missing_debug_implementations)]
85#![warn(missing_docs)]
86#![allow(explicit_outlives_requirements)]
87#![allow(incomplete_features)]
88#![warn(multiple_supertrait_upcastable)]
89#![allow(internal_features)]
90#![deny(ffi_unwind_calls)]
91#![warn(unreachable_pub)]
92// Do not check link redundancy on bootstrapping phase
93#![allow(rustdoc::redundant_explicit_links)]
94#![warn(rustdoc::unescaped_backticks)]
95//
96// Library features:
97// tidy-alphabetical-start
98#![feature(array_ptr_get)]
99#![feature(asm_experimental_arch)]
100#![feature(bigint_helper_methods)]
101#![feature(bstr)]
102#![feature(bstr_internals)]
103#![feature(cfg_select)]
104#![feature(cfg_target_has_reliable_f16_f128)]
105#![feature(const_carrying_mul_add)]
106#![feature(const_cmp)]
107#![feature(const_destruct)]
108#![feature(const_eval_select)]
109#![feature(const_select_unpredictable)]
110#![feature(core_intrinsics)]
111#![feature(coverage_attribute)]
112#![feature(disjoint_bitor)]
113#![feature(internal_impls_macro)]
114#![feature(ip)]
115#![feature(is_ascii_octdigit)]
116#![feature(lazy_get)]
117#![feature(link_cfg)]
118#![feature(offset_of_enum)]
119#![feature(panic_internals)]
120#![feature(pattern_type_macro)]
121#![feature(ptr_alignment_type)]
122#![feature(ptr_metadata)]
123#![feature(set_ptr_value)]
124#![feature(slice_ptr_get)]
125#![feature(str_internals)]
126#![feature(str_split_inclusive_remainder)]
127#![feature(str_split_remainder)]
128#![feature(ub_checks)]
129#![feature(unchecked_neg)]
130#![feature(unchecked_shifts)]
131#![feature(unsafe_pinned)]
132#![feature(utf16_extra)]
133#![feature(variant_count)]
134// tidy-alphabetical-end
135//
136// Language features:
137// tidy-alphabetical-start
138#![feature(abi_unadjusted)]
139#![feature(adt_const_params)]
140#![feature(allow_internal_unsafe)]
141#![feature(allow_internal_unstable)]
142#![feature(auto_traits)]
143#![feature(cfg_sanitize)]
144#![feature(cfg_target_has_atomic)]
145#![feature(cfg_target_has_atomic_equal_alignment)]
146#![feature(cfg_ub_checks)]
147#![feature(const_precise_live_drops)]
148#![feature(const_trait_impl)]
149#![feature(decl_macro)]
150#![feature(deprecated_suggestion)]
151#![feature(derive_const)]
152#![feature(doc_cfg)]
153#![feature(doc_notable_trait)]
154#![feature(extern_types)]
155#![feature(f16)]
156#![feature(f128)]
157#![feature(freeze_impls)]
158#![feature(fundamental)]
159#![feature(funnel_shifts)]
160#![feature(if_let_guard)]
161#![feature(intra_doc_pointers)]
162#![feature(intrinsics)]
163#![feature(lang_items)]
164#![feature(link_llvm_intrinsics)]
165#![feature(macro_metavar_expr)]
166#![feature(macro_metavar_expr_concat)]
167#![feature(marker_trait_attr)]
168#![feature(min_specialization)]
169#![feature(multiple_supertrait_upcastable)]
170#![feature(must_not_suspend)]
171#![feature(negative_impls)]
172#![feature(never_type)]
173#![feature(no_core)]
174#![feature(optimize_attribute)]
175#![feature(pattern_types)]
176#![feature(prelude_import)]
177#![feature(reborrow)]
178#![feature(repr_simd)]
179#![feature(rustc_allow_const_fn_unstable)]
180#![feature(rustc_attrs)]
181#![feature(rustdoc_internals)]
182#![feature(simd_ffi)]
183#![feature(staged_api)]
184#![feature(stmt_expr_attributes)]
185#![feature(strict_provenance_lints)]
186#![feature(trait_alias)]
187#![feature(transparent_unions)]
188#![feature(try_blocks)]
189#![feature(unboxed_closures)]
190#![feature(unsized_fn_params)]
191#![feature(with_negative_coherence)]
192// tidy-alphabetical-end
193//
194// Target features:
195// tidy-alphabetical-start
196#![feature(aarch64_unstable_target_feature)]
197#![feature(arm_target_feature)]
198#![feature(avx10_target_feature)]
199#![feature(hexagon_target_feature)]
200#![feature(loongarch_target_feature)]
201#![feature(mips_target_feature)]
202#![feature(nvptx_target_feature)]
203#![feature(powerpc_target_feature)]
204#![feature(riscv_target_feature)]
205#![feature(rtm_target_feature)]
206#![feature(s390x_target_feature)]
207#![feature(wasm_target_feature)]
208#![feature(x86_amx_intrinsics)]
209// tidy-alphabetical-end
210
211// allow using `core::` in intra-doc links
212#[allow(unused_extern_crates)]
213extern crate self as core;
214
215/* The core prelude, not as all-encompassing as the std prelude */
216// The compiler expects the prelude definition to be defined before it's use statement.
217pub mod prelude;
218
219#[prelude_import]
220#[allow(unused)]
221use prelude::rust_2024::*;
222
223#[macro_use]
224mod macros;
225
226#[unstable(feature = "assert_matches", issue = "82775")]
227/// Unstable module containing the unstable `assert_matches` macro.
228pub mod assert_matches {
229    #[unstable(feature = "assert_matches", issue = "82775")]
230    pub use crate::macros::{assert_matches, debug_assert_matches};
231}
232
233#[unstable(feature = "derive_from", issue = "144889")]
234/// Unstable module containing the unstable `From` derive macro.
235pub mod from {
236    #[unstable(feature = "derive_from", issue = "144889")]
237    pub use crate::macros::builtin::From;
238}
239
240// We don't export this through #[macro_export] for now, to avoid breakage.
241#[unstable(feature = "autodiff", issue = "124509")]
242/// Unstable module containing the unstable `autodiff` macro.
243pub mod autodiff {
244    #[unstable(feature = "autodiff", issue = "124509")]
245    pub use crate::macros::builtin::{autodiff_forward, autodiff_reverse};
246}
247
248#[unstable(feature = "contracts", issue = "128044")]
249pub mod contracts;
250
251#[unstable(feature = "cfg_select", issue = "115585")]
252pub use crate::macros::cfg_select;
253
254#[macro_use]
255mod internal_macros;
256
257#[path = "num/shells/legacy_int_modules.rs"]
258mod legacy_int_modules;
259#[stable(feature = "rust1", since = "1.0.0")]
260#[allow(clippy::useless_attribute)] // FIXME false positive (https://github.com/rust-lang/rust-clippy/issues/15636)
261#[allow(deprecated_in_future)]
262pub use legacy_int_modules::{i8, i16, i32, i64, isize, u8, u16, u32, u64, usize};
263#[stable(feature = "i128", since = "1.26.0")]
264#[allow(clippy::useless_attribute)] // FIXME false positive (https://github.com/rust-lang/rust-clippy/issues/15636)
265#[allow(deprecated_in_future)]
266pub use legacy_int_modules::{i128, u128};
267
268#[path = "num/f128.rs"]
269pub mod f128;
270#[path = "num/f16.rs"]
271pub mod f16;
272#[path = "num/f32.rs"]
273pub mod f32;
274#[path = "num/f64.rs"]
275pub mod f64;
276
277#[macro_use]
278pub mod num;
279
280/* Core modules for ownership management */
281
282pub mod hint;
283pub mod intrinsics;
284pub mod mem;
285#[unstable(feature = "profiling_marker_api", issue = "148197")]
286pub mod profiling;
287pub mod ptr;
288#[unstable(feature = "ub_checks", issue = "none")]
289pub mod ub_checks;
290
291/* Core language traits */
292
293pub mod borrow;
294pub mod clone;
295pub mod cmp;
296pub mod convert;
297pub mod default;
298pub mod error;
299pub mod index;
300pub mod marker;
301pub mod ops;
302
303/* Core types and methods on primitives */
304
305pub mod any;
306pub mod array;
307pub mod ascii;
308pub mod asserting;
309#[unstable(feature = "async_iterator", issue = "79024")]
310pub mod async_iter;
311#[unstable(feature = "bstr", issue = "134915")]
312pub mod bstr;
313pub mod cell;
314pub mod char;
315pub mod ffi;
316#[unstable(feature = "core_io_borrowed_buf", issue = "117693")]
317pub mod io;
318pub mod iter;
319pub mod net;
320pub mod option;
321pub mod os;
322pub mod panic;
323pub mod panicking;
324#[unstable(feature = "pattern_type_macro", issue = "123646")]
325pub mod pat;
326pub mod pin;
327#[unstable(feature = "random", issue = "130703")]
328pub mod random;
329#[unstable(feature = "new_range_api", issue = "125687")]
330pub mod range;
331pub mod result;
332pub mod sync;
333#[unstable(feature = "unsafe_binders", issue = "130516")]
334pub mod unsafe_binder;
335
336pub mod fmt;
337pub mod hash;
338pub mod slice;
339pub mod str;
340pub mod time;
341
342pub mod wtf8;
343
344pub mod unicode;
345
346/* Async */
347pub mod future;
348pub mod task;
349
350/* Heap memory allocator trait */
351#[allow(missing_docs)]
352pub mod alloc;
353
354// note: does not need to be public
355mod bool;
356mod escape;
357mod tuple;
358mod unit;
359
360#[stable(feature = "core_primitive", since = "1.43.0")]
361pub mod primitive;
362
363// Pull in the `core_arch` crate directly into core. The contents of
364// `core_arch` are in a different repository: rust-lang/stdarch.
365//
366// `core_arch` depends on core, but the contents of this module are
367// set up in such a way that directly pulling it here works such that the
368// crate uses the this crate as its core.
369#[path = "../../stdarch/crates/core_arch/src/mod.rs"]
370#[allow(
371    missing_docs,
372    missing_debug_implementations,
373    dead_code,
374    unused_imports,
375    unsafe_op_in_unsafe_fn,
376    ambiguous_glob_reexports,
377    deprecated_in_future,
378    unreachable_pub
379)]
380#[allow(rustdoc::bare_urls)]
381mod core_arch;
382
383#[stable(feature = "simd_arch", since = "1.27.0")]
384pub mod arch;
385
386// Pull in the `core_simd` crate directly into core. The contents of
387// `core_simd` are in a different repository: rust-lang/portable-simd.
388//
389// `core_simd` depends on core, but the contents of this module are
390// set up in such a way that directly pulling it here works such that the
391// crate uses this crate as its core.
392#[path = "../../portable-simd/crates/core_simd/src/mod.rs"]
393#[allow(missing_debug_implementations, dead_code, unsafe_op_in_unsafe_fn)]
394#[allow(rustdoc::bare_urls)]
395#[unstable(feature = "portable_simd", issue = "86656")]
396mod core_simd;
397
398#[unstable(feature = "portable_simd", issue = "86656")]
399pub mod simd {
400    #![doc = include_str!("../../portable-simd/crates/core_simd/src/core_simd_docs.md")]
401
402    #[unstable(feature = "portable_simd", issue = "86656")]
403    pub use crate::core_simd::simd::*;
404}
405
406include!("primitive_docs.rs");