This commit is contained in:
asonix 2023-08-25 17:57:10 -05:00
parent d580286b22
commit 562783ff20

View file

@ -267,3 +267,15 @@ where
std::task::Poll::Pending
}
}
impl<K, V> Default for JoinMap<K, V> {
fn default() -> Self {
Self::new()
}
}
impl<V> Default for JoinSet<V> {
fn default() -> Self {
Self::new()
}
}