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
PinnedFieldsOf<__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