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 c528f3a commit 1c8f346Copy full SHA for 1c8f346
rust/src/debuginfo.rs
@@ -281,10 +281,10 @@ unsafe impl CoreOwnedArrayProvider for DebugInfoParser {
281
}
282
283
284
-unsafe impl<'a> CoreArrayWrapper<'a> for DebugInfoParser {
285
- type Wrapped = Guard<'a, DebugInfoParser>;
+unsafe impl CoreArrayWrapper for DebugInfoParser {
+ type Wrapped<'a> = Guard<'a, DebugInfoParser>;
286
287
- 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> {
288
Guard::new(DebugInfoParser { handle: *raw }, &())
289
290
0 commit comments