Format with rustfmt 1.4.25-beta

This commit is contained in:
David Tolnay 2020-11-28 19:06:37 -08:00
parent e3d871ff7b
commit 192c7819ee
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -2334,10 +2334,7 @@ where
0 => Ok(Field::Unbounded),
1 => Ok(Field::Included),
2 => Ok(Field::Excluded),
_ => Err(Error::invalid_value(
Unexpected::Unsigned(value),
&self,
)),
_ => Err(Error::invalid_value(Unexpected::Unsigned(value), &self)),
}
}
@ -2499,10 +2496,7 @@ where
match value {
0 => Ok(Field::Ok),
1 => Ok(Field::Err),
_ => Err(Error::invalid_value(
Unexpected::Unsigned(value),
&self,
)),
_ => Err(Error::invalid_value(Unexpected::Unsigned(value), &self)),
}
}