Skip to content

Move from StrResult to anyhow::Result #2960

Move from StrResult to anyhow::Result

Move from StrResult to anyhow::Result #2960

This check has been archived and is scheduled for deletion. Learn more about checks retention
GitHub Actions / clippy failed Jul 14, 2023 in 0s

clippy

2 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 2
Warning 0
Note 0
Help 0

Versions

  • rustc 1.71.0 (8ede3aae2 2023-07-12)
  • cargo 1.71.0 (cfd3bbd8f 2023-06-08)
  • clippy 0.1.71 (8ede3aa 2023-07-12)

Annotations

Check failure on line 141 in alvr/dashboard/src/steamvr_launcher.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

cannot find function `show_err` in this scope

error[E0425]: cannot find function `show_err` in this scope
   --> alvr/dashboard/src/steamvr_launcher.rs:141:9
    |
141 |         show_err(maybe_wrap_vrcompositor_launcher());
    |         ^^^^^^^^ not found in this scope
    |
help: consider importing this function
    |
1   + use alvr_common::show_err;
    |

Check failure on line 35 in alvr/dashboard/src/steamvr_launcher.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

cannot find type `StrResult` in this scope

error[E0412]: cannot find type `StrResult` in this scope
  --> alvr/dashboard/src/steamvr_launcher.rs:35:46
   |
35 | pub fn maybe_wrap_vrcompositor_launcher() -> StrResult {
   |                                              ^^^^^^^^^ help: an enum with a similar name exists: `Result`
  --> /rustc/8ede3aae28fe6e4d52b38157d7bfe0d3bceef225/library/core/src/result.rs:502:1
   |
   = note: similarly named enum `Result` defined here