We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b4931a commit fb72cbbCopy full SHA for fb72cbb
src/lib.rs
@@ -252,7 +252,7 @@ impl<T: ?Sized> SharedMmioPointer<'_, T> {
252
// SAFETY: A `SharedMmioPointer` always originates either from a reference or from a
253
// `UniqueMmioPointer`. The caller of `UniqueMmioPointer::new` promises that the MMIO registers can
254
// be accessed from any thread.
255
-unsafe impl<T: Send + Sync> Send for SharedMmioPointer<'_, T> {}
+unsafe impl<T: ?Sized + Send + Sync> Send for SharedMmioPointer<'_, T> {}
256
257
impl<'a, T: ?Sized> From<&'a T> for SharedMmioPointer<'a, T> {
258
fn from(r: &'a T) -> Self {
0 commit comments