pub struct DynamicReadFuture<'p> { /* private fields */ }
Expand description
Future returned by Pipe::read
and Reader::read
.
Trait Implementations§
Source§impl<'p, M, const N: usize> From<ReadFuture<'p, M, N>> for DynamicReadFuture<'p>where
M: RawMutex,
impl<'p, M, const N: usize> From<ReadFuture<'p, M, N>> for DynamicReadFuture<'p>where
M: RawMutex,
Source§fn from(value: ReadFuture<'p, M, N>) -> Self
fn from(value: ReadFuture<'p, M, N>) -> Self
Converts to this type from the input type.
Source§impl<'p> Future for DynamicReadFuture<'p>
impl<'p> Future for DynamicReadFuture<'p>
impl<'p> Unpin for DynamicReadFuture<'p>
Auto Trait Implementations§
impl<'p> Freeze for DynamicReadFuture<'p>
impl<'p> !RefUnwindSafe for DynamicReadFuture<'p>
impl<'p> !Send for DynamicReadFuture<'p>
impl<'p> !Sync for DynamicReadFuture<'p>
impl<'p> !UnwindSafe for DynamicReadFuture<'p>
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