Format with rustfmt 2019-02-14

This commit is contained in:
David Tolnay 2019-02-28 16:40:54 -08:00
parent 97920be33a
commit 650b723da3
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -827,13 +827,13 @@ where
#[cfg(core_reverse)]
impl<T> Serialize for Reverse<T>
where
T: Serialize,
where
T: Serialize,
{
#[inline]
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
where
S: Serializer,
{
self.0.serialize(serializer)
}