mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-11 22:43:42 +00:00
Rollup merge of #95949 - SoniEx2:patch-5, r=m-ou-se
Implement Default for AssertUnwindSafe Trait impls are still insta-stable yeah...?
This commit is contained in:
commit
2b8bf0d530
@ -279,6 +279,13 @@ impl<T: fmt::Debug> fmt::Debug for AssertUnwindSafe<T> {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "assertunwindsafe_default", since = "1.62.0")]
|
||||
impl<T: Default> Default for AssertUnwindSafe<T> {
|
||||
fn default() -> Self {
|
||||
Self(Default::default())
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "futures_api", since = "1.36.0")]
|
||||
impl<F: Future> Future for AssertUnwindSafe<F> {
|
||||
type Output = F::Output;
|
||||
|
Loading…
Reference in New Issue
Block a user