]> git.lizzy.rs Git - rust.git/blob - src/libstd/lib.rs
11b8f953be46008c0a8cd05c3e62da77e8a4ea03
[rust.git] / src / libstd / 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="focusSearchBar();">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](prelude/index.html)
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 `[-]` button near the top of the
36 //! page to collapse it into a more skimmable view.
37 //!
38 //! While you are looking at that `[-]` button also notice the `[src]`
39 //! button. Rust's API documentation comes with the source code and you are
40 //! encouraged to read it. The standard library source is generally high
41 //! quality and a peek behind the curtains is often enlightening.
42 //!
43 //! # What is in the standard library documentation?
44 //!
45 //! First of all, The Rust Standard Library is divided into a number of focused
46 //! modules, [all listed further down this page](#modules). These modules are
47 //! the bedrock upon which all of Rust is forged, and they have mighty names
48 //! like [`std::slice`] and [`std::cmp`]. Modules' documentation typically
49 //! includes an overview of the module along with examples, and are a smart
50 //! place to start familiarizing yourself with the library.
51 //!
52 //! Second, implicit methods on [primitive types] are documented here. This can
53 //! be a source of confusion for two reasons:
54 //!
55 //! 1. While primitives are implemented by the compiler, the standard library
56 //!    implements methods directly on the primitive types (and it is the only
57 //!    library that does so), which are [documented in the section on
58 //!    primitives](#primitives).
59 //! 2. The standard library exports many modules *with the same name as
60 //!    primitive types*. These define additional items related to the primitive
61 //!    type, but not the all-important methods.
62 //!
63 //! So for example there is a [page for the primitive type
64 //! `i32`](primitive.i32.html) that lists all the methods that can be called on
65 //! 32-bit integers (very useful), and there is a [page for the module
66 //! `std::i32`](i32/index.html) that documents the constant values [`MIN`] and
67 //! [`MAX`](i32/constant.MAX.html) (rarely useful).
68 //!
69 //! Note the documentation for the primitives [`str`] and [`[T]`][slice] (also
70 //! called 'slice'). Many method calls on [`String`] and [`Vec<T>`] are actually
71 //! calls to methods on [`str`] and [`[T]`][slice] respectively, via [deref
72 //! coercions][deref-coercions].
73 //!
74 //! Third, the standard library defines [The Rust Prelude], a small collection
75 //! of items - mostly traits - that are imported into every module of every
76 //! crate. The traits in the prelude are pervasive, making the prelude
77 //! documentation a good entry point to learning about the library.
78 //!
79 //! And finally, the standard library exports a number of standard macros, and
80 //! [lists them on this page](#macros) (technically, not all of the standard
81 //! macros are defined by the standard library - some are defined by the
82 //! compiler - but they are documented here the same). Like the prelude, the
83 //! standard macros are imported by default into all crates.
84 //!
85 //! # Contributing changes to the documentation
86 //!
87 //! Check out the rust contribution guidelines [here](
88 //! https://rustc-dev-guide.rust-lang.org/getting-started.html).
89 //! The source for this documentation can be found on
90 //! [GitHub](https://github.com/rust-lang/rust).
91 //! To contribute changes, make sure you read the guidelines first, then submit
92 //! pull-requests for your suggested changes.
93 //!
94 //! Contributions are appreciated! If you see a part of the docs that can be
95 //! improved, submit a PR, or chat with us first on [Discord][rust-discord]
96 //! #docs.
97 //!
98 //! # A Tour of The Rust Standard Library
99 //!
100 //! The rest of this crate documentation is dedicated to pointing out notable
101 //! features of The Rust Standard Library.
102 //!
103 //! ## Containers and collections
104 //!
105 //! The [`option`] and [`result`] modules define optional and error-handling
106 //! types, [`Option<T>`] and [`Result<T, E>`]. The [`iter`] module defines
107 //! Rust's iterator trait, [`Iterator`], which works with the [`for`] loop to
108 //! access collections.
109 //!
110 //! The standard library exposes three common ways to deal with contiguous
111 //! regions of memory:
112 //!
113 //! * [`Vec<T>`] - A heap-allocated *vector* that is resizable at runtime.
114 //! * [`[T; n]`][array] - An inline *array* with a fixed size at compile time.
115 //! * [`[T]`][slice] - A dynamically sized *slice* into any other kind of contiguous
116 //!   storage, whether heap-allocated or not.
117 //!
118 //! Slices can only be handled through some kind of *pointer*, and as such come
119 //! in many flavors such as:
120 //!
121 //! * `&[T]` - *shared slice*
122 //! * `&mut [T]` - *mutable slice*
123 //! * [`Box<[T]>`][owned slice] - *owned slice*
124 //!
125 //! [`str`], a UTF-8 string slice, is a primitive type, and the standard library
126 //! defines many methods for it. Rust [`str`]s are typically accessed as
127 //! immutable references: `&str`. Use the owned [`String`] for building and
128 //! mutating strings.
129 //!
130 //! For converting to strings use the [`format!`] macro, and for converting from
131 //! strings use the [`FromStr`] trait.
132 //!
133 //! Data may be shared by placing it in a reference-counted box or the [`Rc`]
134 //! type, and if further contained in a [`Cell`] or [`RefCell`], may be mutated
135 //! as well as shared. Likewise, in a concurrent setting it is common to pair an
136 //! atomically-reference-counted box, [`Arc`], with a [`Mutex`] to get the same
137 //! effect.
138 //!
139 //! The [`collections`] module defines maps, sets, linked lists and other
140 //! typical collection types, including the common [`HashMap<K, V>`].
141 //!
142 //! ## Platform abstractions and I/O
143 //!
144 //! Besides basic data types, the standard library is largely concerned with
145 //! abstracting over differences in common platforms, most notably Windows and
146 //! Unix derivatives.
147 //!
148 //! Common types of I/O, including [files], [TCP], [UDP], are defined in the
149 //! [`io`], [`fs`], and [`net`] modules.
150 //!
151 //! The [`thread`] module contains Rust's threading abstractions. [`sync`]
152 //! contains further primitive shared memory types, including [`atomic`] and
153 //! [`mpsc`], which contains the channel types for message passing.
154 //!
155 //! [I/O]: io/index.html
156 //! [`MIN`]: i32/constant.MIN.html
157 //! [TCP]: net/struct.TcpStream.html
158 //! [The Rust Prelude]: prelude/index.html
159 //! [UDP]: net/struct.UdpSocket.html
160 //! [`Arc`]: sync/struct.Arc.html
161 //! [owned slice]: boxed/index.html
162 //! [`Cell`]: cell/struct.Cell.html
163 //! [`FromStr`]: str/trait.FromStr.html
164 //! [`HashMap<K, V>`]: collections/struct.HashMap.html
165 //! [`Iterator`]: iter/trait.Iterator.html
166 //! [`Mutex`]: sync/struct.Mutex.html
167 //! [`Option<T>`]: option/enum.Option.html
168 //! [`Rc`]: rc/struct.Rc.html
169 //! [`RefCell`]: cell/struct.RefCell.html
170 //! [`Result<T, E>`]: result/enum.Result.html
171 //! [`String`]: string/struct.String.html
172 //! [`Vec<T>`]: vec/struct.Vec.html
173 //! [array]: primitive.array.html
174 //! [slice]: primitive.slice.html
175 //! [`atomic`]: sync/atomic/index.html
176 //! [`collections`]: collections/index.html
177 //! [`for`]: ../book/ch03-05-control-flow.html#looping-through-a-collection-with-for
178 //! [`format!`]: macro.format.html
179 //! [`fs`]: fs/index.html
180 //! [`io`]: io/index.html
181 //! [`iter`]: iter/index.html
182 //! [`mpsc`]: sync/mpsc/index.html
183 //! [`net`]: net/index.html
184 //! [`option`]: option/index.html
185 //! [`result`]: result/index.html
186 //! [`std::cmp`]: cmp/index.html
187 //! [`std::slice`]: slice/index.html
188 //! [`str`]: primitive.str.html
189 //! [`sync`]: sync/index.html
190 //! [`thread`]: thread/index.html
191 //! [`use std::env`]: env/index.html
192 //! [`use`]: ../book/ch07-02-defining-modules-to-control-scope-and-privacy.html
193 //! [crates.io]: https://crates.io
194 //! [deref-coercions]: ../book/ch15-02-deref.html#implicit-deref-coercions-with-functions-and-methods
195 //! [files]: fs/struct.File.html
196 //! [multithreading]: thread/index.html
197 //! [other]: #what-is-in-the-standard-library-documentation
198 //! [primitive types]: ../book/ch03-02-data-types.html
199 //! [rust-discord]: https://discord.gg/rust-lang
200
201 #![cfg_attr(not(feature = "restricted-std"), stable(feature = "rust1", since = "1.0.0"))]
202 #![cfg_attr(feature = "restricted-std", unstable(feature = "restricted_std", issue = "none"))]
203 #![doc(
204     html_root_url = "https://doc.rust-lang.org/nightly/",
205     html_playground_url = "https://play.rust-lang.org/",
206     issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
207     test(no_crate_inject, attr(deny(warnings))),
208     test(attr(allow(dead_code, deprecated, unused_variables, unused_mut)))
209 )]
210 // Don't link to std. We are std.
211 #![no_std]
212 #![warn(deprecated_in_future)]
213 #![warn(missing_docs)]
214 #![warn(missing_debug_implementations)]
215 #![deny(intra_doc_link_resolution_failure)] // rustdoc is run without -D warnings
216 #![allow(explicit_outlives_requirements)]
217 #![allow(unused_lifetimes)]
218 // Tell the compiler to link to either panic_abort or panic_unwind
219 #![needs_panic_runtime]
220 // std may use features in a platform-specific way
221 #![allow(unused_features)]
222 #![cfg_attr(test, feature(print_internals, set_stdio, update_panic_count))]
223 #![cfg_attr(
224     all(target_vendor = "fortanix", target_env = "sgx"),
225     feature(slice_index_methods, coerce_unsized, sgx_platform, ptr_wrapping_offset_from)
226 )]
227 #![cfg_attr(
228     all(test, target_vendor = "fortanix", target_env = "sgx"),
229     feature(fixed_size_array, maybe_uninit_extra)
230 )]
231 // std is implemented with unstable features, many of which are internal
232 // compiler details that will never be stable
233 // NB: the following list is sorted to minimize merge conflicts.
234 #![feature(alloc_error_handler)]
235 #![feature(alloc_layout_extra)]
236 #![feature(allocator_api)]
237 #![feature(allocator_internals)]
238 #![feature(allow_internal_unsafe)]
239 #![feature(allow_internal_unstable)]
240 #![feature(arbitrary_self_types)]
241 #![feature(array_error_internals)]
242 #![feature(asm)]
243 #![feature(associated_type_bounds)]
244 #![feature(atomic_mut_ptr)]
245 #![feature(box_syntax)]
246 #![feature(c_variadic)]
247 #![feature(can_vector)]
248 #![feature(cfg_accessible)]
249 #![feature(cfg_target_has_atomic)]
250 #![feature(cfg_target_thread_local)]
251 #![feature(char_error_internals)]
252 #![feature(char_internals)]
253 #![feature(clamp)]
254 #![feature(concat_idents)]
255 #![feature(const_cstr_unchecked)]
256 #![feature(const_raw_ptr_deref)]
257 #![feature(container_error_extra)]
258 #![feature(core_intrinsics)]
259 #![feature(custom_test_frameworks)]
260 #![feature(decl_macro)]
261 #![feature(doc_alias)]
262 #![feature(doc_cfg)]
263 #![feature(doc_keyword)]
264 #![feature(doc_masked)]
265 #![cfg_attr(not(bootstrap), feature(doc_spotlight))]
266 #![feature(dropck_eyepatch)]
267 #![feature(duration_constants)]
268 #![feature(exact_size_is_empty)]
269 #![feature(exhaustive_patterns)]
270 #![feature(extend_one)]
271 #![feature(external_doc)]
272 #![feature(fn_traits)]
273 #![feature(format_args_nl)]
274 #![feature(future_readiness_fns)]
275 #![feature(gen_future)]
276 #![feature(generator_trait)]
277 #![feature(global_asm)]
278 #![feature(hash_raw_entry)]
279 #![feature(hashmap_internals)]
280 #![feature(int_error_internals)]
281 #![feature(int_error_matching)]
282 #![feature(integer_atomics)]
283 #![feature(into_future)]
284 #![feature(lang_items)]
285 #![feature(libc)]
286 #![feature(link_args)]
287 #![feature(linkage)]
288 #![feature(llvm_asm)]
289 #![feature(log_syntax)]
290 #![feature(maybe_uninit_extra)]
291 #![feature(maybe_uninit_ref)]
292 #![feature(maybe_uninit_slice)]
293 #![feature(min_specialization)]
294 #![feature(needs_panic_runtime)]
295 #![feature(negative_impls)]
296 #![feature(never_type)]
297 #![feature(nll)]
298 #![feature(once_cell)]
299 #![feature(optin_builtin_traits)]
300 #![feature(or_patterns)]
301 #![feature(panic_info_message)]
302 #![feature(panic_internals)]
303 #![feature(panic_unwind)]
304 #![feature(prelude_import)]
305 #![feature(ptr_internals)]
306 #![feature(raw)]
307 #![feature(raw_ref_macros)]
308 #![feature(ready_macro)]
309 #![feature(renamed_spin_loop)]
310 #![feature(rustc_attrs)]
311 #![feature(rustc_private)]
312 #![feature(shrink_to)]
313 #![feature(slice_concat_ext)]
314 #![feature(slice_internals)]
315 #![feature(slice_strip)]
316 #![feature(staged_api)]
317 #![feature(std_internals)]
318 #![feature(stdsimd)]
319 #![feature(stmt_expr_attributes)]
320 #![feature(str_internals)]
321 #![feature(test)]
322 #![feature(thread_local)]
323 #![feature(toowned_clone_into)]
324 #![feature(total_cmp)]
325 #![feature(trace_macros)]
326 #![feature(try_reserve)]
327 #![feature(unboxed_closures)]
328 #![feature(unsafe_block_in_unsafe_fn)]
329 #![feature(untagged_unions)]
330 #![feature(unwind_attributes)]
331 #![feature(vec_into_raw_parts)]
332 #![feature(wake_trait)]
333 // NB: the above list is sorted to minimize merge conflicts.
334 #![default_lib_allocator]
335
336 // Explicitly import the prelude. The compiler uses this same unstable attribute
337 // to import the prelude implicitly when building crates that depend on std.
338 #[prelude_import]
339 #[allow(unused)]
340 use prelude::v1::*;
341
342 // Access to Bencher, etc.
343 #[cfg(test)]
344 extern crate test;
345
346 #[allow(unused_imports)] // macros from `alloc` are not used on all platforms
347 #[macro_use]
348 extern crate alloc as alloc_crate;
349 #[doc(masked)]
350 #[allow(unused_extern_crates)]
351 extern crate libc;
352
353 // We always need an unwinder currently for backtraces
354 #[doc(masked)]
355 #[allow(unused_extern_crates)]
356 extern crate unwind;
357
358 // During testing, this crate is not actually the "real" std library, but rather
359 // it links to the real std library, which was compiled from this same source
360 // code. So any lang items std defines are conditionally excluded (or else they
361 // would generate duplicate lang item errors), and any globals it defines are
362 // _not_ the globals used by "real" std. So this import, defined only during
363 // testing gives test-std access to real-std lang items and globals. See #2912
364 #[cfg(test)]
365 extern crate std as realstd;
366
367 // The standard macros that are not built-in to the compiler.
368 #[macro_use]
369 mod macros;
370
371 // The Rust prelude
372 pub mod prelude;
373
374 // Public module declarations and re-exports
375 #[stable(feature = "rust1", since = "1.0.0")]
376 pub use alloc_crate::borrow;
377 #[stable(feature = "rust1", since = "1.0.0")]
378 pub use alloc_crate::boxed;
379 #[stable(feature = "rust1", since = "1.0.0")]
380 pub use alloc_crate::fmt;
381 #[stable(feature = "rust1", since = "1.0.0")]
382 pub use alloc_crate::format;
383 #[stable(feature = "rust1", since = "1.0.0")]
384 pub use alloc_crate::rc;
385 #[stable(feature = "rust1", since = "1.0.0")]
386 pub use alloc_crate::slice;
387 #[stable(feature = "rust1", since = "1.0.0")]
388 pub use alloc_crate::str;
389 #[stable(feature = "rust1", since = "1.0.0")]
390 pub use alloc_crate::string;
391 #[stable(feature = "rust1", since = "1.0.0")]
392 pub use alloc_crate::vec;
393 #[stable(feature = "rust1", since = "1.0.0")]
394 pub use core::any;
395 #[stable(feature = "simd_arch", since = "1.27.0")]
396 #[doc(no_inline)]
397 pub use core::arch;
398 #[stable(feature = "core_array", since = "1.36.0")]
399 pub use core::array;
400 #[stable(feature = "rust1", since = "1.0.0")]
401 pub use core::cell;
402 #[stable(feature = "rust1", since = "1.0.0")]
403 pub use core::char;
404 #[stable(feature = "rust1", since = "1.0.0")]
405 pub use core::clone;
406 #[stable(feature = "rust1", since = "1.0.0")]
407 pub use core::cmp;
408 #[stable(feature = "rust1", since = "1.0.0")]
409 pub use core::convert;
410 #[stable(feature = "rust1", since = "1.0.0")]
411 pub use core::default;
412 #[stable(feature = "rust1", since = "1.0.0")]
413 pub use core::hash;
414 #[stable(feature = "core_hint", since = "1.27.0")]
415 pub use core::hint;
416 #[stable(feature = "i128", since = "1.26.0")]
417 pub use core::i128;
418 #[stable(feature = "rust1", since = "1.0.0")]
419 pub use core::i16;
420 #[stable(feature = "rust1", since = "1.0.0")]
421 pub use core::i32;
422 #[stable(feature = "rust1", since = "1.0.0")]
423 pub use core::i64;
424 #[stable(feature = "rust1", since = "1.0.0")]
425 pub use core::i8;
426 #[stable(feature = "rust1", since = "1.0.0")]
427 pub use core::intrinsics;
428 #[stable(feature = "rust1", since = "1.0.0")]
429 pub use core::isize;
430 #[stable(feature = "rust1", since = "1.0.0")]
431 pub use core::iter;
432 #[stable(feature = "rust1", since = "1.0.0")]
433 pub use core::marker;
434 #[stable(feature = "rust1", since = "1.0.0")]
435 pub use core::mem;
436 #[stable(feature = "rust1", since = "1.0.0")]
437 pub use core::ops;
438 #[stable(feature = "rust1", since = "1.0.0")]
439 pub use core::option;
440 #[stable(feature = "pin", since = "1.33.0")]
441 pub use core::pin;
442 #[stable(feature = "rust1", since = "1.0.0")]
443 pub use core::ptr;
444 #[stable(feature = "rust1", since = "1.0.0")]
445 pub use core::raw;
446 #[stable(feature = "rust1", since = "1.0.0")]
447 pub use core::result;
448 #[stable(feature = "i128", since = "1.26.0")]
449 pub use core::u128;
450 #[stable(feature = "rust1", since = "1.0.0")]
451 pub use core::u16;
452 #[stable(feature = "rust1", since = "1.0.0")]
453 pub use core::u32;
454 #[stable(feature = "rust1", since = "1.0.0")]
455 pub use core::u64;
456 #[stable(feature = "rust1", since = "1.0.0")]
457 pub use core::u8;
458 #[stable(feature = "rust1", since = "1.0.0")]
459 pub use core::usize;
460
461 pub mod f32;
462 pub mod f64;
463
464 #[macro_use]
465 pub mod thread;
466 pub mod ascii;
467 pub mod backtrace;
468 pub mod collections;
469 pub mod env;
470 pub mod error;
471 pub mod ffi;
472 pub mod fs;
473 pub mod io;
474 pub mod net;
475 pub mod num;
476 pub mod os;
477 pub mod panic;
478 pub mod path;
479 pub mod process;
480 pub mod sync;
481 pub mod time;
482
483 #[unstable(feature = "once_cell", issue = "74465")]
484 pub mod lazy;
485
486 #[stable(feature = "futures_api", since = "1.36.0")]
487 pub mod task {
488     //! Types and Traits for working with asynchronous tasks.
489
490     #[doc(inline)]
491     #[stable(feature = "futures_api", since = "1.36.0")]
492     pub use core::task::*;
493
494     #[doc(inline)]
495     #[unstable(feature = "wake_trait", issue = "69912")]
496     pub use alloc::task::*;
497 }
498
499 #[stable(feature = "futures_api", since = "1.36.0")]
500 pub mod future;
501
502 // Platform-abstraction modules
503 #[macro_use]
504 mod sys_common;
505 mod sys;
506
507 pub mod alloc;
508
509 // Private support modules
510 mod memchr;
511 mod panicking;
512
513 // The runtime entry point and a few unstable public functions used by the
514 // compiler
515 pub mod rt;
516
517 #[path = "../backtrace/src/lib.rs"]
518 #[allow(dead_code, unused_attributes)]
519 mod backtrace_rs;
520
521 // Pull in the `std_detect` crate directly into libstd. The contents of
522 // `std_detect` are in a different repository: rust-lang/stdarch.
523 //
524 // `std_detect` depends on libstd, but the contents of this module are
525 // set up in such a way that directly pulling it here works such that the
526 // crate uses the this crate as its libstd.
527 #[path = "../stdarch/crates/std_detect/src/mod.rs"]
528 #[allow(missing_debug_implementations, missing_docs, dead_code)]
529 #[unstable(feature = "stdsimd", issue = "48556")]
530 #[cfg(not(test))]
531 mod std_detect;
532
533 #[doc(hidden)]
534 #[unstable(feature = "stdsimd", issue = "48556")]
535 #[cfg(not(test))]
536 pub use std_detect::detect;
537
538 // Re-export macros defined in libcore.
539 #[stable(feature = "rust1", since = "1.0.0")]
540 #[allow(deprecated, deprecated_in_future)]
541 pub use core::{
542     assert_eq, assert_ne, debug_assert, debug_assert_eq, debug_assert_ne, matches, r#try, todo,
543     unimplemented, unreachable, write, writeln,
544 };
545
546 // Re-export built-in macros defined through libcore.
547 #[stable(feature = "builtin_macro_prelude", since = "1.38.0")]
548 #[allow(deprecated)]
549 pub use core::{
550     asm, assert, cfg, column, compile_error, concat, concat_idents, env, file, format_args,
551     format_args_nl, global_asm, include, include_bytes, include_str, line, llvm_asm, log_syntax,
552     module_path, option_env, stringify, trace_macros,
553 };
554
555 #[stable(feature = "core_primitive", since = "1.43.0")]
556 pub use core::primitive;
557
558 // Include a number of private modules that exist solely to provide
559 // the rustdoc documentation for primitive types. Using `include!`
560 // because rustdoc only looks for these modules at the crate level.
561 include!("primitive_docs.rs");
562
563 // Include a number of private modules that exist solely to provide
564 // the rustdoc documentation for the existing keywords. Using `include!`
565 // because rustdoc only looks for these modules at the crate level.
566 include!("keyword_docs.rs");
567
568 // This is required to avoid an unstable error when `restricted-std` is not
569 // enabled. The use of #![feature(restricted_std)] in rustc-std-workspace-std
570 // is unconditional, so the unstable feature needs to be defined somewhere.
571 #[cfg_attr(not(feature = "restricted-std"), unstable(feature = "restricted_std", issue = "none"))]
572 mod __restricted_std_workaround {}