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 {
7474 }
7575 }
7676
77- pub fn iter ( & self ) -> Iter {
77+ pub fn iter ( & self ) -> Iter < ' _ > {
7878 Iter {
7979 idx : 0 ..,
8080 key : self ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ pub enum VsInstance {
1212}
1313
1414impl VsInstance {
15- pub fn installation_name ( & self ) -> Option < Cow < str > > {
15+ pub fn installation_name ( & self ) -> Option < Cow < ' _ , str > > {
1616 match self {
1717 VsInstance :: Com ( s) => s
1818 . installation_name ( )
@@ -30,7 +30,7 @@ impl VsInstance {
3030 }
3131 }
3232
33- pub fn installation_version ( & self ) -> Option < Cow < str > > {
33+ pub fn installation_version ( & self ) -> Option < Cow < ' _ , str > > {
3434 match self {
3535 VsInstance :: Com ( s) => s
3636 . installation_version ( )
You can’t perform that action at this time.
0 commit comments