pub struct AsyncWaitResults<V: 'static>(pub Arc<RefCell<Option<Vec<Result<V>>>>>);Expand description
等待异步任务运行的结果集
Tuple Fields§
§0: Arc<RefCell<Option<Vec<Result<V>>>>>Trait Implementations§
Source§impl<V: 'static> Clone for AsyncWaitResults<V>
impl<V: 'static> Clone for AsyncWaitResults<V>
impl<V: 'static> Send for AsyncWaitResults<V>
impl<V: 'static> Sync for AsyncWaitResults<V>
Auto Trait Implementations§
impl<V> Freeze for AsyncWaitResults<V>
impl<V> !RefUnwindSafe for AsyncWaitResults<V>
impl<V> Unpin for AsyncWaitResults<V>
impl<V> !UnwindSafe for AsyncWaitResults<V>
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