std/lib.rs
1//! # The Rust Standard Library
2//!
3//! The Rust Standard Library is the foundation of portable Rust software, a
4//! set of minimal and battle-tested shared abstractions for the [broader Rust
5//! ecosystem][crates.io]. It offers core types, like [`Vec<T>`] and
6//! [`Option<T>`], library-defined [operations on language
7//! primitives](#primitives), [standard macros](#macros), [I/O] and
8//! [multithreading], among [many other things][other].
9//!
10//! `std` is available to all Rust crates by default. Therefore, the
11//! standard library can be accessed in [`use`] statements through the path
12//! `std`, as in [`use std::env`].
13//!
14//! # How to read this documentation
15//!
16//! If you already know the name of what you are looking for, the fastest way to
17//! find it is to use the <a href="#" onclick="window.searchState.focus();">search
18//! bar</a> at the top of the page.
19//!
20//! Otherwise, you may want to jump to one of these useful sections:
21//!
22//! * [`std::*` modules](#modules)
23//! * [Primitive types](#primitives)
24//! * [Standard macros](#macros)
25//! * [The Rust Prelude]
26//!
27//! If this is your first time, the documentation for the standard library is
28//! written to be casually perused. Clicking on interesting things should
29//! generally lead you to interesting places. Still, there are important bits
30//! you don't want to miss, so read on for a tour of the standard library and
31//! its documentation!
32//!
33//! Once you are familiar with the contents of the standard library you may
34//! begin to find the verbosity of the prose distracting. At this stage in your
35//! development you may want to press the
36//! "<svg style="width:0.75rem;height:0.75rem" viewBox="0 0 12 12" stroke="currentColor" fill="none"><path d="M2,2l4,4l4,-4M2,6l4,4l4,-4"/></svg> Summary"
37//! button near the top of the page to collapse it into a more skimmable view.
38//!
39//! While you are looking at the top of the page, also notice the
40//! "Source" link. Rust's API documentation comes with the source
41//! code and you are encouraged to read it. The standard library source is
42//! generally high quality and a peek behind the curtains is
43//! often enlightening.
44//!
45//! # What is in the standard library documentation?
46//!
47//! First of all, The Rust Standard Library is divided into a number of focused
48//! modules, [all listed further down this page](#modules). These modules are
49//! the bedrock upon which all of Rust is forged, and they have mighty names
50//! like [`std::slice`] and [`std::cmp`]. Modules' documentation typically
51//! includes an overview of the module along with examples, and are a smart
52//! place to start familiarizing yourself with the library.
53//!
54//! Second, implicit methods on [primitive types] are documented here. This can
55//! be a source of confusion for two reasons:
56//!
57//! 1. While primitives are implemented by the compiler, the standard library
58//! implements methods directly on the primitive types (and it is the only
59//! library that does so), which are [documented in the section on
60//! primitives](#primitives).
61//! 2. The standard library exports many modules *with the same name as
62//! primitive types*. These define additional items related to the primitive
63//! type, but not the all-important methods.
64//!
65//! So for example there is a [page for the primitive type
66//! `i32`](primitive::i32) that lists all the methods that can be called on
67//! 32-bit integers (very useful), and there is a [page for the module
68//! `std::i32`] that documents the constant values [`MIN`] and [`MAX`] (rarely
69//! useful).
70//!
71//! Note the documentation for the primitives [`str`] and [`[T]`][prim@slice] (also
72//! called 'slice'). Many method calls on [`String`] and [`Vec<T>`] are actually
73//! calls to methods on [`str`] and [`[T]`][prim@slice] respectively, via [deref
74//! coercions][deref-coercions].
75//!
76//! Third, the standard library defines [The Rust Prelude], a small collection
77//! of items - mostly traits - that are imported into every module of every
78//! crate. The traits in the prelude are pervasive, making the prelude
79//! documentation a good entry point to learning about the library.
80//!
81//! And finally, the standard library exports a number of standard macros, and
82//! [lists them on this page](#macros) (technically, not all of the standard
83//! macros are defined by the standard library - some are defined by the
84//! compiler - but they are documented here the same). Like the prelude, the
85//! standard macros are imported by default into all crates.
86//!
87//! # Contributing changes to the documentation
88//!
89//! Check out the Rust contribution guidelines [here](
90//! https://rustc-dev-guide.rust-lang.org/contributing.html#writing-documentation).
91//! The source for this documentation can be found on
92//! [GitHub](https://github.com/rust-lang/rust) in the 'library/std/' directory.
93//! To contribute changes, make sure you read the guidelines first, then submit
94//! pull-requests for your suggested changes.
95//!
96//! Contributions are appreciated! If you see a part of the docs that can be
97//! improved, submit a PR, or chat with us first on [Discord][rust-discord]
98//! #docs.
99//!
100//! # A Tour of The Rust Standard Library
101//!
102//! The rest of this crate documentation is dedicated to pointing out notable
103//! features of The Rust Standard Library.
104//!
105//! ## Containers and collections
106//!
107//! The [`option`] and [`result`] modules define optional and error-handling
108//! types, [`Option<T>`] and [`Result<T, E>`]. The [`iter`] module defines
109//! Rust's iterator trait, [`Iterator`], which works with the [`for`] loop to
110//! access collections.
111//!
112//! The standard library exposes three common ways to deal with contiguous
113//! regions of memory:
114//!
115//! * [`Vec<T>`] - A heap-allocated *vector* that is resizable at runtime.
116//! * [`[T; N]`][prim@array] - An inline *array* with a fixed size at compile time.
117//! * [`[T]`][prim@slice] - A dynamically sized *slice* into any other kind of contiguous
118//! storage, whether heap-allocated or not.
119//!
120//! Slices can only be handled through some kind of *pointer*, and as such come
121//! in many flavors such as:
122//!
123//! * `&[T]` - *shared slice*
124//! * `&mut [T]` - *mutable slice*
125//! * [`Box<[T]>`][owned slice] - *owned slice*
126//!
127//! [`str`], a UTF-8 string slice, is a primitive type, and the standard library
128//! defines many methods for it. Rust [`str`]s are typically accessed as
129//! immutable references: `&str`. Use the owned [`String`] for building and
130//! mutating strings.
131//!
132//! For converting to strings use the [`format!`] macro, and for converting from
133//! strings use the [`FromStr`] trait.
134//!
135//! Data may be shared by placing it in a reference-counted box or the [`Rc`]
136//! type, and if further contained in a [`Cell`] or [`RefCell`], may be mutated
137//! as well as shared. Likewise, in a concurrent setting it is common to pair an
138//! atomically-reference-counted box, [`Arc`], with a [`Mutex`] to get the same
139//! effect.
140//!
141//! The [`collections`] module defines maps, sets, linked lists and other
142//! typical collection types, including the common [`HashMap<K, V>`].
143//!
144//! ## Platform abstractions and I/O
145//!
146//! Besides basic data types, the standard library is largely concerned with
147//! abstracting over differences in common platforms, most notably Windows and
148//! Unix derivatives.
149//!
150//! Common types of I/O, including [files], [TCP], and [UDP], are defined in
151//! the [`io`], [`fs`], and [`net`] modules.
152//!
153//! The [`thread`] module contains Rust's threading abstractions. [`sync`]
154//! contains further primitive shared memory types, including [`atomic`], [`mpmc`] and
155//! [`mpsc`], which contains the channel types for message passing.
156//!
157//! # Use before and after `main()`
158//!
159//! Many parts of the standard library are expected to work before and after `main()`;
160//! but this is not guaranteed or ensured by tests. It is recommended that you write your own tests
161//! and run them on each platform you wish to support.
162//! This means that use of `std` before/after main, especially of features that interact with the
163//! OS or global state, is exempted from stability and portability guarantees and instead only
164//! provided on a best-effort basis. Nevertheless bug reports are appreciated.
165//!
166//! On the other hand `core` and `alloc` are most likely to work in such environments with
167//! the caveat that any hookable behavior such as panics, oom handling or allocators will also
168//! depend on the compatibility of the hooks.
169//!
170//! Some features may also behave differently outside main, e.g. stdio could become unbuffered,
171//! some panics might turn into aborts, backtraces might not get symbolicated or similar.
172//!
173//! Non-exhaustive list of known limitations:
174//!
175//! - after-main use of thread-locals, which also affects additional features:
176//! - [`thread::current()`]
177//! - under UNIX, before main, file descriptors 0, 1, and 2 may be unchanged
178//! (they are guaranteed to be open during main,
179//! and are opened to /dev/null O_RDWR if they weren't open on program start)
180//!
181//!
182//! [I/O]: io
183//! [`MIN`]: i32::MIN
184//! [`MAX`]: i32::MAX
185//! [page for the module `std::i32`]: crate::i32
186//! [TCP]: net::TcpStream
187//! [The Rust Prelude]: prelude
188//! [UDP]: net::UdpSocket
189//! [`Arc`]: sync::Arc
190//! [owned slice]: boxed
191//! [`Cell`]: cell::Cell
192//! [`FromStr`]: str::FromStr
193//! [`HashMap<K, V>`]: collections::HashMap
194//! [`Mutex`]: sync::Mutex
195//! [`Option<T>`]: option::Option
196//! [`Rc`]: rc::Rc
197//! [`RefCell`]: cell::RefCell
198//! [`Result<T, E>`]: result::Result
199//! [`Vec<T>`]: vec::Vec
200//! [`atomic`]: sync::atomic
201//! [`for`]: ../book/ch03-05-control-flow.html#looping-through-a-collection-with-for
202//! [`str`]: prim@str
203//! [`mpmc`]: sync::mpmc
204//! [`mpsc`]: sync::mpsc
205//! [`std::cmp`]: cmp
206//! [`std::slice`]: mod@slice
207//! [`use std::env`]: env/index.html
208//! [`use`]: ../book/ch07-02-defining-modules-to-control-scope-and-privacy.html
209//! [crates.io]: https://crates.io
210//! [deref-coercions]: ../book/ch15-02-deref.html#implicit-deref-coercions-with-functions-and-methods
211//! [files]: fs::File
212//! [multithreading]: thread
213//! [other]: #what-is-in-the-standard-library-documentation
214//! [primitive types]: ../book/ch03-02-data-types.html
215//! [rust-discord]: https://discord.gg/rust-lang
216//! [array]: prim@array
217//! [slice]: prim@slice
218
219#![cfg_attr(not(restricted_std), stable(feature = "rust1", since = "1.0.0"))]
220#![cfg_attr(
221 restricted_std,
222 unstable(
223 feature = "restricted_std",
224 issue = "none",
225 reason = "You have attempted to use a standard library built for a platform that it doesn't \
226 know how to support. Consider building it for a known environment, disabling it with \
227 `#![no_std]` or overriding this warning by enabling this feature."
228 )
229)]
230#![rustc_preserve_ub_checks]
231#![doc(
232 html_playground_url = "https://play.rust-lang.org/",
233 issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
234 test(no_crate_inject, attr(deny(warnings))),
235 test(attr(allow(dead_code, deprecated, unused_variables, unused_mut)))
236)]
237#![doc(rust_logo)]
238#![doc(cfg_hide(
239 not(test),
240 not(any(test, bootstrap)),
241 no_global_oom_handling,
242 not(no_global_oom_handling)
243))]
244// Don't link to std. We are std.
245#![no_std]
246// Tell the compiler to link to either panic_abort or panic_unwind
247#![needs_panic_runtime]
248//
249// Lints:
250#![warn(deprecated_in_future)]
251#![warn(missing_docs)]
252#![warn(missing_debug_implementations)]
253#![allow(explicit_outlives_requirements)]
254#![allow(unused_lifetimes)]
255#![allow(internal_features)]
256#![deny(fuzzy_provenance_casts)]
257#![deny(unsafe_op_in_unsafe_fn)]
258#![allow(rustdoc::redundant_explicit_links)]
259#![warn(rustdoc::unescaped_backticks)]
260// Ensure that std can be linked against panic_abort despite compiled with `-C panic=unwind`
261#![deny(ffi_unwind_calls)]
262// std may use features in a platform-specific way
263#![allow(unused_features)]
264//
265// Features:
266#![cfg_attr(test, feature(internal_output_capture, print_internals, update_panic_count, rt))]
267#![cfg_attr(
268 all(target_vendor = "fortanix", target_env = "sgx"),
269 feature(slice_index_methods, coerce_unsized, sgx_platform)
270)]
271#![cfg_attr(any(windows, target_os = "uefi"), feature(round_char_boundary))]
272#![cfg_attr(target_family = "wasm", feature(stdarch_wasm_atomic_wait))]
273#![cfg_attr(target_arch = "wasm64", feature(simd_wasm64))]
274//
275// Language features:
276// tidy-alphabetical-start
277
278// stabilization was reverted after it hit beta
279#![feature(alloc_error_handler)]
280#![feature(allocator_internals)]
281#![feature(allow_internal_unsafe)]
282#![feature(allow_internal_unstable)]
283#![feature(asm_experimental_arch)]
284#![feature(autodiff)]
285#![feature(cfg_sanitizer_cfi)]
286#![feature(cfg_target_thread_local)]
287#![feature(cfi_encoding)]
288#![feature(char_max_len)]
289#![feature(concat_idents)]
290#![feature(decl_macro)]
291#![feature(deprecated_suggestion)]
292#![feature(doc_cfg)]
293#![feature(doc_cfg_hide)]
294#![feature(doc_masked)]
295#![feature(doc_notable_trait)]
296#![feature(dropck_eyepatch)]
297#![feature(extended_varargs_abi_support)]
298#![feature(f128)]
299#![feature(f16)]
300#![feature(ffi_const)]
301#![feature(formatting_options)]
302#![feature(if_let_guard)]
303#![feature(intra_doc_pointers)]
304#![feature(iter_advance_by)]
305#![feature(iter_next_chunk)]
306#![feature(lang_items)]
307#![feature(let_chains)]
308#![feature(link_cfg)]
309#![feature(linkage)]
310#![feature(macro_metavar_expr_concat)]
311#![feature(maybe_uninit_fill)]
312#![feature(min_specialization)]
313#![feature(must_not_suspend)]
314#![feature(needs_panic_runtime)]
315#![feature(negative_impls)]
316#![feature(never_type)]
317#![feature(optimize_attribute)]
318#![feature(prelude_import)]
319#![feature(rustc_attrs)]
320#![feature(rustdoc_internals)]
321#![feature(staged_api)]
322#![feature(stmt_expr_attributes)]
323#![feature(strict_provenance_lints)]
324#![feature(thread_local)]
325#![feature(try_blocks)]
326#![feature(try_trait_v2)]
327#![feature(type_alias_impl_trait)]
328// tidy-alphabetical-end
329//
330// Library features (core):
331// tidy-alphabetical-start
332#![feature(array_chunks)]
333#![feature(bstr)]
334#![feature(bstr_internals)]
335#![feature(char_internals)]
336#![feature(clone_to_uninit)]
337#![feature(core_intrinsics)]
338#![feature(core_io_borrowed_buf)]
339#![feature(duration_constants)]
340#![feature(error_generic_member_access)]
341#![feature(error_iter)]
342#![feature(exact_size_is_empty)]
343#![feature(exclusive_wrapper)]
344#![feature(extend_one)]
345#![feature(float_algebraic)]
346#![feature(float_gamma)]
347#![feature(float_minimum_maximum)]
348#![feature(fmt_internals)]
349#![feature(generic_atomic)]
350#![feature(hasher_prefixfree_extras)]
351#![feature(hashmap_internals)]
352#![feature(hint_must_use)]
353#![feature(ip)]
354#![feature(lazy_get)]
355#![feature(maybe_uninit_slice)]
356#![feature(maybe_uninit_write_slice)]
357#![feature(nonnull_provenance)]
358#![feature(panic_can_unwind)]
359#![feature(panic_internals)]
360#![feature(pin_coerce_unsized_trait)]
361#![feature(pointer_is_aligned_to)]
362#![feature(portable_simd)]
363#![feature(ptr_as_uninit)]
364#![feature(ptr_mask)]
365#![feature(random)]
366#![feature(slice_internals)]
367#![feature(slice_ptr_get)]
368#![feature(slice_range)]
369#![feature(std_internals)]
370#![feature(str_internals)]
371#![feature(strict_provenance_atomic_ptr)]
372#![feature(sync_unsafe_cell)]
373#![feature(temporary_niche_types)]
374#![feature(ub_checks)]
375#![feature(used_with_arg)]
376// tidy-alphabetical-end
377//
378// Library features (alloc):
379// tidy-alphabetical-start
380#![feature(alloc_layout_extra)]
381#![feature(allocator_api)]
382#![feature(get_mut_unchecked)]
383#![feature(map_try_insert)]
384#![feature(new_zeroed_alloc)]
385#![feature(slice_concat_trait)]
386#![feature(thin_box)]
387#![feature(try_reserve_kind)]
388#![feature(try_with_capacity)]
389#![feature(unique_rc_arc)]
390#![feature(vec_into_raw_parts)]
391// tidy-alphabetical-end
392//
393// Library features (unwind):
394// tidy-alphabetical-start
395#![feature(panic_unwind)]
396// tidy-alphabetical-end
397//
398// Library features (std_detect):
399// tidy-alphabetical-start
400#![feature(stdarch_internal)]
401// tidy-alphabetical-end
402//
403// Only for re-exporting:
404// tidy-alphabetical-start
405#![feature(assert_matches)]
406#![feature(async_iterator)]
407#![feature(c_variadic)]
408#![feature(cfg_accessible)]
409#![feature(cfg_eval)]
410#![feature(concat_bytes)]
411#![feature(const_format_args)]
412#![feature(custom_test_frameworks)]
413#![feature(edition_panic)]
414#![feature(format_args_nl)]
415#![feature(log_syntax)]
416#![feature(test)]
417#![feature(trace_macros)]
418// tidy-alphabetical-end
419//
420// Only used in tests/benchmarks:
421//
422// Only for const-ness:
423// tidy-alphabetical-start
424#![feature(io_const_error)]
425// tidy-alphabetical-end
426//
427#![default_lib_allocator]
428
429// Explicitly import the prelude. The compiler uses this same unstable attribute
430// to import the prelude implicitly when building crates that depend on std.
431#[prelude_import]
432#[allow(unused)]
433use prelude::rust_2021::*;
434
435// Access to Bencher, etc.
436#[cfg(test)]
437extern crate test;
438
439#[allow(unused_imports)] // macros from `alloc` are not used on all platforms
440#[macro_use]
441extern crate alloc as alloc_crate;
442
443// Many compiler tests depend on libc being pulled in by std
444// so include it here even if it's unused.
445#[doc(masked)]
446#[allow(unused_extern_crates)]
447#[cfg(not(all(windows, target_env = "msvc")))]
448extern crate libc;
449
450// We always need an unwinder currently for backtraces
451#[doc(masked)]
452#[allow(unused_extern_crates)]
453extern crate unwind;
454
455// FIXME: #94122 this extern crate definition only exist here to stop
456// miniz_oxide docs leaking into std docs. Find better way to do it.
457// Remove exclusion from tidy platform check when this removed.
458#[doc(masked)]
459#[allow(unused_extern_crates)]
460#[cfg(all(
461 not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))),
462 feature = "miniz_oxide"
463))]
464extern crate miniz_oxide;
465
466// During testing, this crate is not actually the "real" std library, but rather
467// it links to the real std library, which was compiled from this same source
468// code. So any lang items std defines are conditionally excluded (or else they
469// would generate duplicate lang item errors), and any globals it defines are
470// _not_ the globals used by "real" std. So this import, defined only during
471// testing gives test-std access to real-std lang items and globals. See #2912
472#[cfg(test)]
473extern crate std as realstd;
474
475// The standard macros that are not built-in to the compiler.
476#[macro_use]
477mod macros;
478
479// The runtime entry point and a few unstable public functions used by the
480// compiler
481#[macro_use]
482pub mod rt;
483
484// The Rust prelude
485pub mod prelude;
486
487#[stable(feature = "rust1", since = "1.0.0")]
488pub use core::any;
489#[stable(feature = "core_array", since = "1.35.0")]
490pub use core::array;
491#[unstable(feature = "async_iterator", issue = "79024")]
492pub use core::async_iter;
493#[stable(feature = "rust1", since = "1.0.0")]
494pub use core::cell;
495#[stable(feature = "rust1", since = "1.0.0")]
496pub use core::char;
497#[stable(feature = "rust1", since = "1.0.0")]
498pub use core::clone;
499#[stable(feature = "rust1", since = "1.0.0")]
500pub use core::cmp;
501#[stable(feature = "rust1", since = "1.0.0")]
502pub use core::convert;
503#[stable(feature = "rust1", since = "1.0.0")]
504pub use core::default;
505#[stable(feature = "futures_api", since = "1.36.0")]
506pub use core::future;
507#[stable(feature = "core_hint", since = "1.27.0")]
508pub use core::hint;
509#[stable(feature = "rust1", since = "1.0.0")]
510#[allow(deprecated, deprecated_in_future)]
511pub use core::i8;
512#[stable(feature = "rust1", since = "1.0.0")]
513#[allow(deprecated, deprecated_in_future)]
514pub use core::i16;
515#[stable(feature = "rust1", since = "1.0.0")]
516#[allow(deprecated, deprecated_in_future)]
517pub use core::i32;
518#[stable(feature = "rust1", since = "1.0.0")]
519#[allow(deprecated, deprecated_in_future)]
520pub use core::i64;
521#[stable(feature = "i128", since = "1.26.0")]
522#[allow(deprecated, deprecated_in_future)]
523pub use core::i128;
524#[stable(feature = "rust1", since = "1.0.0")]
525pub use core::intrinsics;
526#[stable(feature = "rust1", since = "1.0.0")]
527#[allow(deprecated, deprecated_in_future)]
528pub use core::isize;
529#[stable(feature = "rust1", since = "1.0.0")]
530pub use core::iter;
531#[stable(feature = "rust1", since = "1.0.0")]
532pub use core::marker;
533#[stable(feature = "rust1", since = "1.0.0")]
534pub use core::mem;
535#[stable(feature = "rust1", since = "1.0.0")]
536pub use core::ops;
537#[stable(feature = "rust1", since = "1.0.0")]
538pub use core::option;
539#[stable(feature = "pin", since = "1.33.0")]
540pub use core::pin;
541#[stable(feature = "rust1", since = "1.0.0")]
542pub use core::ptr;
543#[unstable(feature = "new_range_api", issue = "125687")]
544pub use core::range;
545#[stable(feature = "rust1", since = "1.0.0")]
546pub use core::result;
547#[stable(feature = "rust1", since = "1.0.0")]
548#[allow(deprecated, deprecated_in_future)]
549pub use core::u8;
550#[stable(feature = "rust1", since = "1.0.0")]
551#[allow(deprecated, deprecated_in_future)]
552pub use core::u16;
553#[stable(feature = "rust1", since = "1.0.0")]
554#[allow(deprecated, deprecated_in_future)]
555pub use core::u32;
556#[stable(feature = "rust1", since = "1.0.0")]
557#[allow(deprecated, deprecated_in_future)]
558pub use core::u64;
559#[stable(feature = "i128", since = "1.26.0")]
560#[allow(deprecated, deprecated_in_future)]
561pub use core::u128;
562#[unstable(feature = "unsafe_binders", issue = "130516")]
563pub use core::unsafe_binder;
564#[stable(feature = "rust1", since = "1.0.0")]
565#[allow(deprecated, deprecated_in_future)]
566pub use core::usize;
567
568#[stable(feature = "rust1", since = "1.0.0")]
569pub use alloc_crate::borrow;
570#[stable(feature = "rust1", since = "1.0.0")]
571pub use alloc_crate::boxed;
572#[stable(feature = "rust1", since = "1.0.0")]
573pub use alloc_crate::fmt;
574#[stable(feature = "rust1", since = "1.0.0")]
575pub use alloc_crate::format;
576#[stable(feature = "rust1", since = "1.0.0")]
577pub use alloc_crate::rc;
578#[stable(feature = "rust1", since = "1.0.0")]
579pub use alloc_crate::slice;
580#[stable(feature = "rust1", since = "1.0.0")]
581pub use alloc_crate::str;
582#[stable(feature = "rust1", since = "1.0.0")]
583pub use alloc_crate::string;
584#[stable(feature = "rust1", since = "1.0.0")]
585pub use alloc_crate::vec;
586
587#[unstable(feature = "f128", issue = "116909")]
588pub mod f128;
589#[unstable(feature = "f16", issue = "116909")]
590pub mod f16;
591pub mod f32;
592pub mod f64;
593
594#[macro_use]
595pub mod thread;
596pub mod ascii;
597pub mod backtrace;
598#[unstable(feature = "bstr", issue = "134915")]
599pub mod bstr;
600pub mod collections;
601pub mod env;
602pub mod error;
603pub mod ffi;
604pub mod fs;
605pub mod hash;
606pub mod io;
607pub mod net;
608pub mod num;
609pub mod os;
610pub mod panic;
611#[unstable(feature = "pattern_type_macro", issue = "123646")]
612pub mod pat;
613pub mod path;
614pub mod process;
615#[unstable(feature = "random", issue = "130703")]
616pub mod random;
617pub mod sync;
618pub mod time;
619
620// Pull in `std_float` crate into std. The contents of
621// `std_float` are in a different repository: rust-lang/portable-simd.
622#[path = "../../portable-simd/crates/std_float/src/lib.rs"]
623#[allow(missing_debug_implementations, dead_code, unsafe_op_in_unsafe_fn)]
624#[allow(rustdoc::bare_urls)]
625#[unstable(feature = "portable_simd", issue = "86656")]
626mod std_float;
627
628#[unstable(feature = "portable_simd", issue = "86656")]
629pub mod simd {
630 #![doc = include_str!("../../portable-simd/crates/core_simd/src/core_simd_docs.md")]
631
632 #[doc(inline)]
633 pub use core::simd::*;
634
635 #[doc(inline)]
636 pub use crate::std_float::StdFloat;
637}
638#[unstable(feature = "autodiff", issue = "124509")]
639/// This module provides support for automatic differentiation.
640pub mod autodiff {
641 /// This macro handles automatic differentiation.
642 pub use core::autodiff::autodiff;
643}
644#[stable(feature = "futures_api", since = "1.36.0")]
645pub mod task {
646 //! Types and Traits for working with asynchronous tasks.
647
648 #[doc(inline)]
649 #[stable(feature = "wake_trait", since = "1.51.0")]
650 pub use alloc::task::*;
651 #[doc(inline)]
652 #[stable(feature = "futures_api", since = "1.36.0")]
653 pub use core::task::*;
654}
655
656#[doc = include_str!("../../stdarch/crates/core_arch/src/core_arch_docs.md")]
657#[stable(feature = "simd_arch", since = "1.27.0")]
658pub mod arch {
659 #[stable(feature = "simd_arch", since = "1.27.0")]
660 // The `no_inline`-attribute is required to make the documentation of all
661 // targets available.
662 // See https://github.com/rust-lang/rust/pull/57808#issuecomment-457390549 for
663 // more information.
664 #[doc(no_inline)] // Note (#82861): required for correct documentation
665 pub use core::arch::*;
666
667 #[stable(feature = "simd_aarch64", since = "1.60.0")]
668 pub use std_detect::is_aarch64_feature_detected;
669 #[unstable(feature = "stdarch_arm_feature_detection", issue = "111190")]
670 pub use std_detect::is_arm_feature_detected;
671 #[unstable(feature = "is_loongarch_feature_detected", issue = "117425")]
672 pub use std_detect::is_loongarch_feature_detected;
673 #[unstable(feature = "is_riscv_feature_detected", issue = "111192")]
674 pub use std_detect::is_riscv_feature_detected;
675 #[unstable(feature = "stdarch_s390x_feature_detection", issue = "135413")]
676 pub use std_detect::is_s390x_feature_detected;
677 #[stable(feature = "simd_x86", since = "1.27.0")]
678 pub use std_detect::is_x86_feature_detected;
679 #[unstable(feature = "stdarch_mips_feature_detection", issue = "111188")]
680 pub use std_detect::{is_mips_feature_detected, is_mips64_feature_detected};
681 #[unstable(feature = "stdarch_powerpc_feature_detection", issue = "111191")]
682 pub use std_detect::{is_powerpc_feature_detected, is_powerpc64_feature_detected};
683}
684
685// This was stabilized in the crate root so we have to keep it there.
686#[stable(feature = "simd_x86", since = "1.27.0")]
687pub use std_detect::is_x86_feature_detected;
688
689// Platform-abstraction modules
690mod sys;
691mod sys_common;
692
693pub mod alloc;
694
695// Private support modules
696mod panicking;
697
698#[path = "../../backtrace/src/lib.rs"]
699#[allow(dead_code, unused_attributes, fuzzy_provenance_casts, unsafe_op_in_unsafe_fn)]
700mod backtrace_rs;
701
702#[unstable(feature = "cfg_match", issue = "115585")]
703pub use core::cfg_match;
704#[unstable(
705 feature = "concat_bytes",
706 issue = "87555",
707 reason = "`concat_bytes` is not stable enough for use and is subject to change"
708)]
709pub use core::concat_bytes;
710#[stable(feature = "matches_macro", since = "1.42.0")]
711#[allow(deprecated, deprecated_in_future)]
712pub use core::matches;
713#[stable(feature = "core_primitive", since = "1.43.0")]
714pub use core::primitive;
715#[stable(feature = "todo_macro", since = "1.40.0")]
716#[allow(deprecated, deprecated_in_future)]
717pub use core::todo;
718// Re-export built-in macros defined through core.
719#[stable(feature = "builtin_macro_prelude", since = "1.38.0")]
720#[allow(deprecated)]
721#[cfg_attr(bootstrap, allow(deprecated_in_future))]
722pub use core::{
723 assert, assert_matches, cfg, column, compile_error, concat, concat_idents, const_format_args,
724 env, file, format_args, format_args_nl, include, include_bytes, include_str, line, log_syntax,
725 module_path, option_env, stringify, trace_macros,
726};
727// Re-export macros defined in core.
728#[stable(feature = "rust1", since = "1.0.0")]
729#[allow(deprecated, deprecated_in_future)]
730pub use core::{
731 assert_eq, assert_ne, debug_assert, debug_assert_eq, debug_assert_ne, r#try, unimplemented,
732 unreachable, write, writeln,
733};
734
735// Include a number of private modules that exist solely to provide
736// the rustdoc documentation for primitive types. Using `include!`
737// because rustdoc only looks for these modules at the crate level.
738include!("../../core/src/primitive_docs.rs");
739
740// Include a number of private modules that exist solely to provide
741// the rustdoc documentation for the existing keywords. Using `include!`
742// because rustdoc only looks for these modules at the crate level.
743include!("keyword_docs.rs");
744
745// This is required to avoid an unstable error when `restricted-std` is not
746// enabled. The use of #![feature(restricted_std)] in rustc-std-workspace-std
747// is unconditional, so the unstable feature needs to be defined somewhere.
748#[unstable(feature = "restricted_std", issue = "none")]
749mod __restricted_std_workaround {}
750
751mod sealed {
752 /// This trait being unreachable from outside the crate
753 /// prevents outside implementations of our extension traits.
754 /// This allows adding more trait methods in the future.
755 #[unstable(feature = "sealed", issue = "none")]
756 pub trait Sealed {}
757}
758
759#[cfg(test)]
760#[allow(dead_code)] // Not used in all configurations.
761pub(crate) mod test_helpers;