pub struct BlockingPermitFuture<'a> { /* private fields */ }
Expand description
A future which resolves to a BlockingPermit
.
Implementations§
Source§impl<'a> BlockingPermitFuture<'a>
impl<'a> BlockingPermitFuture<'a>
Sourcepub fn new(semaphore: &Semaphore) -> BlockingPermitFuture<'_> ⓘ
pub fn new(semaphore: &Semaphore) -> BlockingPermitFuture<'_> ⓘ
Construct given Semaphore
reference.
Sourcepub fn make_sync(self) -> SyncBlockingPermitFuture<'a> ⓘ
pub fn make_sync(self) -> SyncBlockingPermitFuture<'a> ⓘ
Make a Sync
version of this future by wrapping with a Mutex
.
Trait Implementations§
Source§impl<'a> Debug for BlockingPermitFuture<'a>
impl<'a> Debug for BlockingPermitFuture<'a>
Source§impl<'a> FusedFuture for BlockingPermitFuture<'a>
impl<'a> FusedFuture for BlockingPermitFuture<'a>
Source§fn is_terminated(&self) -> bool
fn is_terminated(&self) -> bool
Returns
true
if the underlying future should no longer be polled.Source§impl<'a> Future for BlockingPermitFuture<'a>
impl<'a> Future for BlockingPermitFuture<'a>
Auto Trait Implementations§
impl<'a> Freeze for BlockingPermitFuture<'a>
impl<'a> !RefUnwindSafe for BlockingPermitFuture<'a>
impl<'a> Send for BlockingPermitFuture<'a>
impl<'a> !Sync for BlockingPermitFuture<'a>
impl<'a> !Unpin for BlockingPermitFuture<'a>
impl<'a> !UnwindSafe for BlockingPermitFuture<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
Source§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
Source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more