diff options
| author | Frank King <frankking1729@gmail.com> | 2024-11-28 21:57:39 +0800 |
|---|---|---|
| committer | Frank King <frankking1729@gmail.com> | 2025-03-22 15:14:49 +0800 |
| commit | 5016467a23c93384ffcb58b9c5ff2f8afc349d54 (patch) | |
| tree | 36157d672f353b0e3c78e658912870978fc6239e /library/std/src/sync | |
| parent | 2a1c8beabf81bccf48970c5dbe34dfaaed20f86c (diff) | |
| download | rust-5016467a23c93384ffcb58b9c5ff2f8afc349d54.tar.gz rust-5016467a23c93384ffcb58b9c5ff2f8afc349d54.zip | |
Implement `UniqueArc`
Diffstat (limited to 'library/std/src/sync')
| -rw-r--r-- | library/std/src/sync/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/std/src/sync/mod.rs b/library/std/src/sync/mod.rs index 5b50a3c6ccf..e67b4f6f22f 100644 --- a/library/std/src/sync/mod.rs +++ b/library/std/src/sync/mod.rs @@ -176,6 +176,8 @@ pub use core::sync::Exclusive; #[stable(feature = "rust1", since = "1.0.0")] pub use core::sync::atomic; +#[unstable(feature = "unique_rc_arc", issue = "112566")] +pub use alloc_crate::sync::UniqueArc; #[stable(feature = "rust1", since = "1.0.0")] pub use alloc_crate::sync::{Arc, Weak}; |
