mirror of
https://github.com/JockeTF/fimfareader.git
synced 2024-11-23 13:58:00 +01:00
Set max width to 79 in RustFmt
This commit is contained in:
parent
1dfbf1ea7f
commit
97b81eeba7
2 changed files with 3 additions and 1 deletions
1
.rustfmt.toml
Normal file
1
.rustfmt.toml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
max_width = 79
|
|
@ -213,7 +213,8 @@ impl<'de> Deserialize<'de> for Color {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl CompletionStatus {
|
impl CompletionStatus {
|
||||||
const FIELDS: &'static [&'static str] = &["cancelled", "complete", "hiatus", "incomplete"];
|
const FIELDS: &'static [&'static str] =
|
||||||
|
&["cancelled", "complete", "hiatus", "incomplete"];
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'de> Deserialize<'de> for CompletionStatus {
|
impl<'de> Deserialize<'de> for CompletionStatus {
|
||||||
|
|
Loading…
Reference in a new issue