pub struct FutureRet<R> {
pub type_: FinallyType,
pub result: Option<R>,
}
Fields§
§type_: FinallyType
§result: Option<R>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<R> Freeze for FutureRet<R>where
R: Freeze,
impl<R> RefUnwindSafe for FutureRet<R>where
R: RefUnwindSafe,
impl<R> Send for FutureRet<R>where
R: Send,
impl<R> Sync for FutureRet<R>where
R: Sync,
impl<R> Unpin for FutureRet<R>where
R: Unpin,
impl<R> UnwindSafe for FutureRet<R>where
R: UnwindSafe,
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