Skip to content

Rewrite for wayland-rs 0.30 #45

Rewrite for wayland-rs 0.30

Rewrite for wayland-rs 0.30 #45

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

clippy

2 warnings

Details

Results

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

Versions

  • rustc 1.70.0 (90c541806 2023-05-31)
  • cargo 1.70.0 (ec8a8a0ca 2023-04-25)
  • clippy 0.1.70 (90c5418 2023-05-31)

Annotations

Check warning on line 64 in wl-clipboard-rs-tools/src/bin/wl-paste.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the borrowed expression implements the required traits

warning: the borrowed expression implements the required traits
  --> wl-clipboard-rs-tools/src/bin/wl-paste.rs:64:40
   |
64 |     if let Ok(stdout_path) = read_link(&format!("/dev/fd/{}", STDOUT_FILENO)) {
   |                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `format!("/dev/fd/{}", STDOUT_FILENO)`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
   = note: `#[warn(clippy::needless_borrow)]` on by default

Check warning on line 24 in src/common.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

variant name ends with the enum's name

warning: variant name ends with the enum's name
  --> src/common.rs:24:5
   |
24 |     SocketOpenError(#[source] io::Error),
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#enum_variant_names
   = note: `#[warn(clippy::enum_variant_names)]` on by default