Struct async_lock::futures::ReadArc
source · pub struct ReadArc<'a, T> { /* private fields */ }
Expand description
The future returned by RwLock::read_arc
.
Trait Implementations§
source§impl<'a, T> Future for ReadArc<'a, T>
impl<'a, T> Future for ReadArc<'a, T>
source§type Output = RwLockReadGuardArc<T>
type Output = RwLockReadGuardArc<T>
The type of value produced on completion.
impl<'__pin, 'a, T> Unpin for ReadArc<'a, T>where
__Origin<'__pin, 'a, T>: Unpin,
Auto Trait Implementations§
impl<'a, T> Freeze for ReadArc<'a, T>
impl<'a, T> !RefUnwindSafe for ReadArc<'a, T>
impl<'a, T> Send for ReadArc<'a, T>
impl<'a, T> Sync for ReadArc<'a, T>
impl<'a, T> !UnwindSafe for ReadArc<'a, T>
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