File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ impl RegistryKey {
74
74
}
75
75
}
76
76
77
- pub fn iter ( & self ) -> Iter {
77
+ pub fn iter ( & self ) -> Iter < ' _ > {
78
78
Iter {
79
79
idx : 0 ..,
80
80
key : self ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ pub enum VsInstance {
12
12
}
13
13
14
14
impl VsInstance {
15
- pub fn installation_name ( & self ) -> Option < Cow < str > > {
15
+ pub fn installation_name ( & self ) -> Option < Cow < ' _ , str > > {
16
16
match self {
17
17
VsInstance :: Com ( s) => s
18
18
. installation_name ( )
@@ -30,7 +30,7 @@ impl VsInstance {
30
30
}
31
31
}
32
32
33
- pub fn installation_version ( & self ) -> Option < Cow < str > > {
33
+ pub fn installation_version ( & self ) -> Option < Cow < ' _ , str > > {
34
34
match self {
35
35
VsInstance :: Com ( s) => s
36
36
. installation_version ( )
You can’t perform that action at this time.
0 commit comments