diff options
| author | Jorge Aparicio <jorge@japaric.io> | 2019-02-15 20:20:38 +0100 |
|---|---|---|
| committer | Jorge Aparicio <jorge@japaric.io> | 2019-02-19 13:13:16 +0100 |
| commit | 16821c8315fc5e0f9bfbc6ddd7ca79cc2b1d5d40 (patch) | |
| tree | 137f2c957eb63b7eeb0cf4f34d9e4a198e447fa2 /src | |
| parent | c8df71adf0407050b2b0fd358c22fae6e2dc9ebf (diff) | |
document the nightly feature
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -35,6 +35,11 @@ //! //! [`Instant`]: struct.Instant.html //! [`Duration`]: struct.Duration.html +//! +//! - `nightly`. Enabling this opt-in feature makes RTFM internally use the unstable +//! `core::mem::MaybeUninit` API and unstable `const_fn` language feature to reduce static memory +//! usage, runtime overhead and initialization overhead. This feature requires a nightly compiler +//! and may stop working at any time! #![cfg_attr(feature = "nightly", feature(maybe_uninit))] #![deny(missing_docs)] |
