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.
1 parent b8106eb commit 73afe56Copy full SHA for 73afe56
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
+impl<T> Lorem for T where
932
+ 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