refactor(clippy): 📦 Fix clippy error with matches!()
This commit is contained in:
parent
3fd8c16b16
commit
9b35283ca6
|
@ -416,15 +416,9 @@ async fn main() -> Result<()> {
|
||||||
execute!(stdout, style::Print(format!("\nError: {:?}\n", e)))?;
|
execute!(stdout, style::Print(format!("\nError: {:?}\n", e)))?;
|
||||||
stdout.flush()?;
|
stdout.flush()?;
|
||||||
|
|
||||||
let cont = match e.downcast_ref::<std::io::Error>() {
|
let cont = matches!(e.downcast_ref::<std::io::Error>(),
|
||||||
Some(e)
|
Some(e) if e.kind() == std::io::ErrorKind::NotFound || e.kind() == std::io::ErrorKind::PermissionDenied)
|
||||||
if e.kind() == std::io::ErrorKind::NotFound
|
|| matches!(e.downcast_ref::<tokio_serial::Error>(), Some(e) if e.kind == tokio_serial::ErrorKind::NoDevice)
|
||||||
|| e.kind() == std::io::ErrorKind::PermissionDenied =>
|
|
||||||
{
|
|
||||||
true
|
|
||||||
}
|
|
||||||
_ => false,
|
|
||||||
} || matches!(e.downcast_ref::<tokio_serial::Error>(), Some(e) if e.kind == tokio_serial::ErrorKind::NoDevice)
|
|
||||||
|| matches!(
|
|| matches!(
|
||||||
e.downcast_ref::<tokio::sync::mpsc::error::SendError<Vec<u8>>>(),
|
e.downcast_ref::<tokio::sync::mpsc::error::SendError<Vec<u8>>>(),
|
||||||
Some(_)
|
Some(_)
|
||||||
|
|
Loading…
Reference in New Issue