We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
MaybeUninit
1 parent 381a29b commit edf2d43Copy full SHA for edf2d43
1 file changed
src/projections/maybe_uninit.rs
@@ -25,7 +25,7 @@ where
25
where
26
Self: 'b;
27
28
- unsafe fn project<'b>(this: *const Self) -> Self::Output<'a>
+ unsafe fn project<'b>(this: *const Self) -> Self::Output<'b>
29
30
Self: 'b,
31
{
@@ -45,7 +45,7 @@ where
45
46
47
48
49
50
51
@@ -65,7 +65,7 @@ where
65
66
67
68
- unsafe fn project_mut<'b>(this: *mut Self) -> Self::OutputMut<'a>
+ unsafe fn project_mut<'b>(this: *mut Self) -> Self::OutputMut<'b>
69
70
71
0 commit comments