2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-30 01:05:31 +00:00

expose sync::{Arc,Weak}

Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
Yoshua Wuyts 2019-09-19 18:28:17 +02:00
parent 8be7655672
commit fa31c6347e
No known key found for this signature in database
GPG key ID: 24EA8164F96777ED

View file

@ -29,6 +29,9 @@
//! # }) }
//! ```
#[doc(inline)]
pub use std::sync::{Arc, Weak};
pub use mutex::{Mutex, MutexGuard};
pub use rwlock::{RwLock, RwLockReadGuard, RwLockWriteGuard};