cargo-mobile2 0.7 #4840
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
Annotations
6 errors and 1 warning
redundant guard:
src/lib.rs#L299
error: redundant guard
--> src/lib.rs:299:20
|
299 | Ok(s) if s == 0 => break,
| ^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards
help: try
|
299 - Ok(s) if s == 0 => break,
299 + Ok(0) => break,
|
|
redundant guard:
src/lib.rs#L281
error: redundant guard
--> src/lib.rs:281:20
|
281 | Ok(s) if s == 0 => break,
| ^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards
help: try
|
281 - Ok(s) if s == 0 => break,
281 + Ok(0) => break,
|
|
redundant guard:
src/lib.rs#L299
error: redundant guard
--> src/lib.rs:299:20
|
299 | Ok(s) if s == 0 => break,
| ^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards
help: try
|
299 - Ok(s) if s == 0 => break,
299 + Ok(0) => break,
|
|
redundant guard:
src/lib.rs#L281
error: redundant guard
--> src/lib.rs:281:20
|
281 | Ok(s) if s == 0 => break,
| ^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards
help: try
|
281 - Ok(s) if s == 0 => break,
281 + Ok(0) => break,
|
|
redundant guard:
src/interface/rust/desktop.rs#L251
error: redundant guard
--> src/interface/rust/desktop.rs:251:18
|
251 | Ok(s) if s == 0 => break,
| ^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards
= note: `-D clippy::redundant-guards` implied by `-D warnings`
help: try
|
251 - Ok(s) if s == 0 => break,
251 + Ok(0) => break,
|
|
redundant guard:
src/interface/rust/desktop.rs#L251
error: redundant guard
--> src/interface/rust/desktop.rs:251:18
|
251 | Ok(s) if s == 0 => break,
| ^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards
= note: `-D clippy::redundant-guards` implied by `-D warnings`
help: try
|
251 - Ok(s) if s == 0 => break,
251 + Ok(0) => break,
|
|
audit-rust
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/audit-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|