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 247cb16 commit da3eaa0Copy full SHA for da3eaa0
src/toolchain.rs
@@ -399,7 +399,7 @@ impl Toolchain {
399
/// # Ok(())
400
/// # }
401
/// ```
402
- pub fn cargo<'a>(&'a self) -> impl Runnable + 'a {
+ pub fn cargo(&self) -> impl Runnable + '_ {
403
RustupProxy {
404
toolchain: self,
405
name: "cargo",
@@ -423,7 +423,7 @@ impl Toolchain {
423
424
425
426
- pub fn rustc<'a>(&'a self) -> impl Runnable + 'a {
+ pub fn rustc(&self) -> impl Runnable + '_ {
427
428
429
name: "rustc",
0 commit comments