Struct futures_util::future::CatchUnwind
source · [−]pub struct CatchUnwind<Fut> { /* private fields */ }
Expand description
Future for the catch_unwind
method.
Trait Implementations
sourceimpl<Fut: Debug> Debug for CatchUnwind<Fut>
impl<Fut: Debug> Debug for CatchUnwind<Fut>
sourceimpl<Fut> Future for CatchUnwind<Fut>where
Fut: Future + UnwindSafe,
impl<Fut> Future for CatchUnwind<Fut>where
Fut: Future + UnwindSafe,
impl<'__pin, Fut> Unpin for CatchUnwind<Fut>where
__Origin<'__pin, Fut>: Unpin,
Auto Trait Implementations
impl<Fut> RefUnwindSafe for CatchUnwind<Fut>where
Fut: RefUnwindSafe,
impl<Fut> Send for CatchUnwind<Fut>where
Fut: Send,
impl<Fut> Sync for CatchUnwind<Fut>where
Fut: Sync,
impl<Fut> UnwindSafe for CatchUnwind<Fut>where
Fut: UnwindSafe,
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