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 48d440a commit 71a1c7eCopy full SHA for 71a1c7e
rust/src/types.rs
@@ -2104,10 +2104,10 @@ unsafe impl CoreOwnedArrayProvider for StructureMember {
2104
}
2105
2106
2107
-unsafe impl<'a> CoreArrayWrapper<'a> for StructureMember {
2108
- type Wrapped = Guard<'a, StructureMember>;
+unsafe impl CoreArrayWrapper for StructureMember {
+ type Wrapped<'a> = Guard<'a, StructureMember>;
2109
2110
- unsafe fn wrap_raw(raw: &'a Self::Raw, _context: &'a Self::Context) -> Self::Wrapped {
+ unsafe fn wrap_raw<'a>(raw: &'a Self::Raw, _context: &'a Self::Context) -> Self::Wrapped<'a> {
2111
Guard::new(StructureMember::from_raw(*raw), &())
2112
2113
0 commit comments