2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-10-19 08:36:36 +00:00
This commit is contained in:
ChosenName 2025-08-19 00:25:37 +08:00 committed by GitHub
commit 1b61a18a39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -178,7 +178,10 @@ pub use std::sync::{Arc, Weak};
pub use async_lock::{Mutex, MutexGuard, MutexGuardArc};
#[doc(inline)]
pub use async_lock::{RwLock, RwLockReadGuard, RwLockUpgradableReadGuard, RwLockWriteGuard};
pub use async_lock::{
RwLock, RwLockReadGuard, RwLockReadGuardArc, RwLockUpgradableReadGuard,
RwLockUpgradableReadGuardArc, RwLockWriteGuard, RwLockWriteGuardArc,
};
cfg_unstable! {
pub use async_lock::{Barrier, BarrierWaitResult};