pub trait AsyncSlotSemaphore: SlotSemaphore {
// Required method
fn take<'a>(
&'a self,
n: usize,
) -> impl Future<Output = Result<(), SlotSemaphoreClosedError>> + 'a;
}Required Methods§
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.