Merge pull request #32 from mobusoperandi/refactor #18
Annotations
4 warnings
cargo-clippy: use of a fallible conversion when an infallible one could be used:
crates/eelco/src/app/state.rs#L100
warning: use of a fallible conversion when an infallible one could be used
--> crates/eelco/src/app/state.rs:100:29
|
100 | acc.push(ch.try_into()?);
| ^^^^^^^^ help: use: `into`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
= note: `#[warn(clippy::unnecessary_fallible_conversions)]` on by default
|
cargo-clippy: use of a fallible conversion when an infallible one could be used:
crates/eelco/src/app/state.rs#L115
warning: use of a fallible conversion when an infallible one could be used
--> crates/eelco/src/app/state.rs:115:29
|
115 | acc.push(ch.try_into()?);
| ^^^^^^^^ help: use: `into`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
|
cargo-clippy: use of a fallible conversion when an infallible one could be used:
crates/eelco/src/app/state.rs#L132
warning: use of a fallible conversion when an infallible one could be used
--> crates/eelco/src/app/state.rs:132:29
|
132 | acc.push(ch.try_into()?);
| ^^^^^^^^ help: use: `into`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
|
cargo-clippy: 3 warnings emitted
warning: 3 warnings emitted
|