We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02e3618 commit 89d98a7Copy full SHA for 89d98a7
crates/cust_core/src/lib.rs
@@ -93,7 +93,7 @@ pub mod _hidden {
93
unsafe impl<T: DeviceCopy> DeviceCopy for MaybeUninit<T> {}
94
unsafe impl<T: DeviceCopy> DeviceCopy for Option<T> {}
95
unsafe impl<L: DeviceCopy, R: DeviceCopy> DeviceCopy for Result<L, R> {}
96
- unsafe impl<T: ?Sized + DeviceCopy> DeviceCopy for PhantomData<T> {}
+ unsafe impl<T: DeviceCopy> DeviceCopy for PhantomData<T> {}
97
// Allow DeviceCopy for lifetime constraint markers
98
unsafe impl DeviceCopy for PhantomData<&()> {}
99
unsafe impl<T: DeviceCopy> DeviceCopy for Wrapping<T> {}
0 commit comments