diff options
| author | Aleksey Kladov <aleksey.kladov@gmail.com> | 2020-01-12 18:14:29 +0100 |
|---|---|---|
| committer | Ashley Mannix <ashleymannix@live.com.au> | 2020-07-17 07:23:49 +1000 |
| commit | cac1768b03c8d6673c51605dca03997876979d68 (patch) | |
| tree | bde94ac2ff3a01bc28a45b4737614d5485e02027 /src/libstd/lib.rs | |
| parent | 6ee1b62c811a6eb68d6db6dfb91f66a49956749b (diff) | |
First cut of `std::lazy` module
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 4fd5e238eea..171d6c3f64f 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -476,6 +476,12 @@ pub mod process; pub mod sync; pub mod time; +#[unstable( + feature = "std_lazy", + issue = "99", +)] +pub mod lazy; + #[stable(feature = "futures_api", since = "1.36.0")] pub mod task { //! Types and Traits for working with asynchronous tasks. |
