Embassy
embassy-sync

Crates

git

Versions

default

Flavors

Struct embassy_sync::semaphore::GreedySemaphore

source ·
pub struct GreedySemaphore<M: RawMutex> { /* private fields */ }
Expand description

A greedy Semaphore implementation.

Tasks can acquire permits as soon as they become available, even if another task is waiting on a larger number of permits.

Implementations§

source§

impl<M: RawMutex> GreedySemaphore<M>

source

pub const fn new(permits: usize) -> Self

Create a new Semaphore.

Trait Implementations§

source§

impl<M: RawMutex> Default for GreedySemaphore<M>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<M: RawMutex> Semaphore for GreedySemaphore<M>

§

type Error = Infallible

The error returned when the semaphore is unable to acquire the requested permits.
source§

async fn acquire( &self, permits: usize ) -> Result<SemaphoreReleaser<'_, Self>, Self::Error>

Asynchronously acquire one or more permits from the semaphore.
source§

fn try_acquire(&self, permits: usize) -> Option<SemaphoreReleaser<'_, Self>>

Try to immediately acquire one or more permits from the semaphore.
source§

async fn acquire_all( &self, min: usize ) -> Result<SemaphoreReleaser<'_, Self>, Self::Error>

Asynchronously acquire all permits controlled by the semaphore. Read more
source§

fn try_acquire_all(&self, min: usize) -> Option<SemaphoreReleaser<'_, Self>>

Try to immediately acquire all available permits from the semaphore, if at least min permits are available.
source§

fn release(&self, permits: usize)

Release permits back to the semaphore, making them available to be acquired.
source§

fn set(&self, permits: usize)

Reset the number of available permints in the semaphore to permits.

Auto Trait Implementations§

§

impl<M> !Freeze for GreedySemaphore<M>

§

impl<M> !RefUnwindSafe for GreedySemaphore<M>

§

impl<M> Send for GreedySemaphore<M>
where M: Send,

§

impl<M> Sync for GreedySemaphore<M>
where M: Sync,

§

impl<M> Unpin for GreedySemaphore<M>
where M: Unpin,

§

impl<M> UnwindSafe for GreedySemaphore<M>
where M: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.