1 line
1.8 KiB
JavaScript
1 line
1.8 KiB
JavaScript
initSidebarItems({"enum":[["TryAcquireError","Error returned from the `Semaphore::try_acquire` function."]],"mod":[["broadcast","A multi-producer, multi-consumer broadcast queue. Each sent value is seen by all consumers."],["mpsc","A multi-producer, single-consumer queue for sending values between asynchronous tasks."],["oneshot","A one-shot channel is used for sending a single message between asynchronous tasks. The [`channel`] function is used to create a [`Sender`] and [`Receiver`] handle pair that form the channel."],["watch","A single-producer, multi-consumer channel that only retains the last sent value."]],"struct":[["AcquireError","Error returned from the `Semaphore::acquire` function."],["Barrier","A barrier enables multiple threads to synchronize the beginning of some computation."],["BarrierWaitResult","A `BarrierWaitResult` is returned by `wait` when all threads in the `Barrier` have rendezvoused."],["Mutex","An asynchronous `Mutex`-like type."],["MutexGuard","A handle to a held `Mutex`."],["Notify","Notify a single task to wake up."],["OwnedMutexGuard","An owned handle to a held `Mutex`."],["OwnedSemaphorePermit","An owned permit from the semaphore."],["RwLock","An asynchronous reader-writer lock."],["RwLockMappedWriteGuard","RAII structure used to release the exclusive write access of a lock when dropped."],["RwLockReadGuard","RAII structure used to release the shared read access of a lock when dropped."],["RwLockWriteGuard","RAII structure used to release the exclusive write access of a lock when dropped."],["Semaphore","Counting semaphore performing asynchronous permit acquisition."],["SemaphorePermit","A permit from the semaphore."],["TryLockError","Error returned from the `Mutex::try_lock`, `RwLock::try_read` and `RwLock::try_write` functions."]]}); |