Struct futures_util::io::SeeKRelative
source · [−]pub struct SeeKRelative<'a, R> { /* private fields */ }
Expand description
Future for the BufReader::seek_relative
method.
Trait Implementations
sourceimpl<'a, R: Debug> Debug for SeeKRelative<'a, R>
impl<'a, R: Debug> Debug for SeeKRelative<'a, R>
sourceimpl<R> Future for SeeKRelative<'_, R>where
R: AsyncRead + AsyncSeek,
impl<R> Future for SeeKRelative<'_, R>where
R: AsyncRead + AsyncSeek,
Auto Trait Implementations
impl<'a, R> RefUnwindSafe for SeeKRelative<'a, R>where
R: RefUnwindSafe,
impl<'a, R> Send for SeeKRelative<'a, R>where
R: Send,
impl<'a, R> Sync for SeeKRelative<'a, R>where
R: Sync,
impl<'a, R> Unpin for SeeKRelative<'a, R>
impl<'a, R> !UnwindSafe for SeeKRelative<'a, R>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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?
sourcefn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more