Struct futures_locks::RwLockReadFut
source · pub struct RwLockReadFut<T: ?Sized> { /* private fields */ }
Expand description
A Future
representing a pending RwLock
shared acquisition.
Trait Implementations§
source§impl<T: ?Sized> Drop for RwLockReadFut<T>
impl<T: ?Sized> Drop for RwLockReadFut<T>
source§impl<T: ?Sized> Future for RwLockReadFut<T>
impl<T: ?Sized> Future for RwLockReadFut<T>
Auto Trait Implementations§
impl<T> !RefUnwindSafe for RwLockReadFut<T>
impl<T: ?Sized> Send for RwLockReadFut<T>where
T: Send,
impl<T: ?Sized> Sync for RwLockReadFut<T>where
T: Send + Sync,
impl<T: ?Sized> Unpin for RwLockReadFut<T>
impl<T> !UnwindSafe for RwLockReadFut<T>
Blanket Implementations§
source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
§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