We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3be235 commit 494560cCopy full SHA for 494560c
src/closures.rs
@@ -264,7 +264,7 @@ fn rewrite_closure_fn_decl(
264
""
265
};
266
let is_async = if asyncness.is_async() { "async " } else { "" };
267
- let mover = if capture == ast::CaptureBy::Value {
+ let mover = if matches!(capture, ast::CaptureBy::Value { .. }) {
268
"move "
269
} else {
270
src/expr.rs
@@ -368,7 +368,7 @@ pub(crate) fn format_expr(
368
}
369
370
ast::ExprKind::Gen(capture_by, ref block, ref kind) => {
371
- let mover = if capture_by == ast::CaptureBy::Value {
+ let mover = if matches!(capture_by, ast::CaptureBy::Value { .. }) {
372
373
374
0 commit comments