@@ -5,7 +5,6 @@ use crate::ops::{Deref, DerefMut};
5
5
use crate :: pin:: Pin ;
6
6
use crate :: ptr:: { NonNull , Unique } ;
7
7
use crate :: stream:: Stream ;
8
- use crate :: sync:: atomic;
9
8
use crate :: task:: { Context , Poll } ;
10
9
11
10
/// A marker trait which represents "panic safe" types in Rust.
@@ -204,49 +203,49 @@ impl<T> RefUnwindSafe for AssertUnwindSafe<T> {}
204
203
205
204
#[ cfg( target_has_atomic_load_store = "ptr" ) ]
206
205
#[ stable( feature = "unwind_safe_atomic_refs" , since = "1.14.0" ) ]
207
- impl RefUnwindSafe for atomic:: AtomicIsize { }
206
+ impl RefUnwindSafe for crate :: sync :: atomic:: AtomicIsize { }
208
207
#[ cfg( target_has_atomic_load_store = "8" ) ]
209
208
#[ stable( feature = "integer_atomics_stable" , since = "1.34.0" ) ]
210
- impl RefUnwindSafe for atomic:: AtomicI8 { }
209
+ impl RefUnwindSafe for crate :: sync :: atomic:: AtomicI8 { }
211
210
#[ cfg( target_has_atomic_load_store = "16" ) ]
212
211
#[ stable( feature = "integer_atomics_stable" , since = "1.34.0" ) ]
213
- impl RefUnwindSafe for atomic:: AtomicI16 { }
212
+ impl RefUnwindSafe for crate :: sync :: atomic:: AtomicI16 { }
214
213
#[ cfg( target_has_atomic_load_store = "32" ) ]
215
214
#[ stable( feature = "integer_atomics_stable" , since = "1.34.0" ) ]
216
- impl RefUnwindSafe for atomic:: AtomicI32 { }
215
+ impl RefUnwindSafe for crate :: sync :: atomic:: AtomicI32 { }
217
216
#[ cfg( target_has_atomic_load_store = "64" ) ]
218
217
#[ stable( feature = "integer_atomics_stable" , since = "1.34.0" ) ]
219
- impl RefUnwindSafe for atomic:: AtomicI64 { }
218
+ impl RefUnwindSafe for crate :: sync :: atomic:: AtomicI64 { }
220
219
#[ cfg( target_has_atomic_load_store = "128" ) ]
221
220
#[ unstable( feature = "integer_atomics" , issue = "32976" ) ]
222
- impl RefUnwindSafe for atomic:: AtomicI128 { }
221
+ impl RefUnwindSafe for crate :: sync :: atomic:: AtomicI128 { }
223
222
224
223
#[ cfg( target_has_atomic_load_store = "ptr" ) ]
225
224
#[ stable( feature = "unwind_safe_atomic_refs" , since = "1.14.0" ) ]
226
- impl RefUnwindSafe for atomic:: AtomicUsize { }
225
+ impl RefUnwindSafe for crate :: sync :: atomic:: AtomicUsize { }
227
226
#[ cfg( target_has_atomic_load_store = "8" ) ]
228
227
#[ stable( feature = "integer_atomics_stable" , since = "1.34.0" ) ]
229
- impl RefUnwindSafe for atomic:: AtomicU8 { }
228
+ impl RefUnwindSafe for crate :: sync :: atomic:: AtomicU8 { }
230
229
#[ cfg( target_has_atomic_load_store = "16" ) ]
231
230
#[ stable( feature = "integer_atomics_stable" , since = "1.34.0" ) ]
232
- impl RefUnwindSafe for atomic:: AtomicU16 { }
231
+ impl RefUnwindSafe for crate :: sync :: atomic:: AtomicU16 { }
233
232
#[ cfg( target_has_atomic_load_store = "32" ) ]
234
233
#[ stable( feature = "integer_atomics_stable" , since = "1.34.0" ) ]
235
- impl RefUnwindSafe for atomic:: AtomicU32 { }
234
+ impl RefUnwindSafe for crate :: sync :: atomic:: AtomicU32 { }
236
235
#[ cfg( target_has_atomic_load_store = "64" ) ]
237
236
#[ stable( feature = "integer_atomics_stable" , since = "1.34.0" ) ]
238
- impl RefUnwindSafe for atomic:: AtomicU64 { }
237
+ impl RefUnwindSafe for crate :: sync :: atomic:: AtomicU64 { }
239
238
#[ cfg( target_has_atomic_load_store = "128" ) ]
240
239
#[ unstable( feature = "integer_atomics" , issue = "32976" ) ]
241
- impl RefUnwindSafe for atomic:: AtomicU128 { }
240
+ impl RefUnwindSafe for crate :: sync :: atomic:: AtomicU128 { }
242
241
243
242
#[ cfg( target_has_atomic_load_store = "8" ) ]
244
243
#[ stable( feature = "unwind_safe_atomic_refs" , since = "1.14.0" ) ]
245
- impl RefUnwindSafe for atomic:: AtomicBool { }
244
+ impl RefUnwindSafe for crate :: sync :: atomic:: AtomicBool { }
246
245
247
246
#[ cfg( target_has_atomic_load_store = "ptr" ) ]
248
247
#[ stable( feature = "unwind_safe_atomic_refs" , since = "1.14.0" ) ]
249
- impl < T > RefUnwindSafe for atomic:: AtomicPtr < T > { }
248
+ impl < T > RefUnwindSafe for crate :: sync :: atomic:: AtomicPtr < T > { }
250
249
251
250
#[ stable( feature = "catch_unwind" , since = "1.9.0" ) ]
252
251
impl < T > Deref for AssertUnwindSafe < T > {
0 commit comments