mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-31 00:00:07 +02:00
16 lines
363 B
Rust
16 lines
363 B
Rust
//! Synchronization primitives
|
|
|
|
mod cancellation_token;
|
|
pub use cancellation_token::{
|
|
guard::DropGuard, CancellationToken, WaitForCancellationFuture, WaitForCancellationFutureOwned,
|
|
};
|
|
|
|
mod mpsc;
|
|
pub use mpsc::{PollSendError, PollSender};
|
|
|
|
mod poll_semaphore;
|
|
pub use poll_semaphore::PollSemaphore;
|
|
|
|
mod reusable_box;
|
|
pub use reusable_box::ReusableBoxFuture;
|