AsyncSlotSemaphore

Trait AsyncSlotSemaphore 

Source
pub trait AsyncSlotSemaphore: SlotSemaphore {
    // Required method
    fn take<'a>(
        &'a self,
        n: usize,
    ) -> impl Future<Output = Result<(), SlotSemaphoreClosedError>> + 'a;
}

Required Methods§

Source

fn take<'a>( &'a self, n: usize, ) -> impl Future<Output = Result<(), SlotSemaphoreClosedError>> + 'a

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl AsyncSlotSemaphore for Rc<Semaphore>

Source§

async fn take(&self, n: usize) -> Result<(), SlotSemaphoreClosedError>

Implementors§