Struct tokio_util::sync::PollSemaphore [−][src]
A wrapper around Semaphore that provides a poll_acquire method.
Implementations
impl PollSemaphore[src]
pub fn new(semaphore: Arc<Semaphore>) -> Self[src]
Create a new PollSemaphore.
pub fn close(&self)[src]
Closes the semaphore.
pub fn clone_inner(&self) -> Arc<Semaphore>[src]
Obtain a clone of the inner semaphore.
pub fn into_inner(self) -> Arc<Semaphore>[src]
Get back the inner semaphore.
pub fn poll_acquire(
&mut self,
cx: &mut Context<'_>
) -> Poll<Option<OwnedSemaphorePermit>>[src]
&mut self,
cx: &mut Context<'_>
) -> Poll<Option<OwnedSemaphorePermit>>
Poll to acquire a permit from the semaphore.
This can return the following values:
Poll::Pendingif a permit is not currently available.Poll::Ready(Some(permit))if a permit was acquired.Poll::Ready(None)if the semaphore has been closed.
When this method returns Poll::Pending, the current task is scheduled
to receive a wakeup when a permit becomes available, or when the
semaphore is closed. Note that on multiple calls to poll_acquire, only
the Waker from the Context passed to the most recent call is
scheduled to receive a wakeup.
Trait Implementations
impl Clone for PollSemaphore[src]
fn clone(&self) -> PollSemaphore[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for PollSemaphore[src]
impl Stream for PollSemaphore[src]
Auto Trait Implementations
impl !RefUnwindSafe for PollSemaphore[src]
impl Send for PollSemaphore[src]
impl Sync for PollSemaphore[src]
impl Unpin for PollSemaphore[src]
impl !UnwindSafe for PollSemaphore[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,