aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGeoffrey Copin <[email protected]>2020-04-11 19:32:58 +0100
committerGeoffrey Copin <[email protected]>2020-04-11 19:32:58 +0100
commitd9089245fefdc4179c1d61839e78131c5e5a5a45 (patch)
treeed4d0256459a116b4dcb90006056c255f7e4ad44 /docs
parentd362fcfc1c52f40a64a329e90b3f213afea0e6f5 (diff)
Generate doc
Diffstat (limited to 'docs')
-rw-r--r--docs/user/assists.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/user/assists.md b/docs/user/assists.md
index 754131f6f..75404e289 100644
--- a/docs/user/assists.md
+++ b/docs/user/assists.md
@@ -582,6 +582,21 @@ impl Walrus {
582} 582}
583``` 583```
584 584
585## `reorder_fields`
586
587Reorder the fields of record literals and record patterns in the same order as in
588the definition.
589
590```rust
591// BEFORE
592struct Foo {foo: i32, bar: i32};
593const test: Foo = ┃Foo {bar: 0, foo: 1}
594
595// AFTER
596struct Foo {foo: i32, bar: i32};
597const test: Foo = Foo {foo: 1, bar: 0}
598```
599
585## `replace_if_let_with_match` 600## `replace_if_let_with_match`
586 601
587Replaces `if let` with an else branch with a `match` expression. 602Replaces `if let` with an else branch with a `match` expression.