We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents db81a7f + 188acd9 commit bd876b9Copy full SHA for bd876b9
Configurations.md
@@ -906,6 +906,37 @@ fn lorem() -> usize {
906
907
See also [`control_brace_style`](#control_brace_style).
908
909
+
910
+## `where_single_line`
911
912
+To force single line where layout
913
914
+- **Default value**: `false`
915
+- **Possible values**: `true`, `false`
916
917
+#### `false` (default):
918
919
+```rust
920
+impl<T> Lorem for T
921
+where
922
+ Option<T>: Ipsum,
923
+{
924
+ ...
925
+}
926
+```
927
928
+#### `true`:
929
930
931
932
+where Option<T>: Ipsum {
933
934
935
936
937
+See also [`brace_style`](#brace_style), [`control_brace_style`](#control_brace_style).
938
939
940
## `force_explicit_abi`
941
942
Always print the abi for extern items
0 commit comments