From 51faad45ad54e8db0009edb3b3b589059b051cb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurenz=20M=C3=A4dje?= Date: Sun, 28 Jul 2019 21:20:27 +0200 Subject: [PATCH] =?UTF-8?q?Reformat=20where=20clauses=20=F0=9F=8E=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/font/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/font/mod.rs b/src/font/mod.rs index 4efc624d8..976327d93 100644 --- a/src/font/mod.rs +++ b/src/font/mod.rs @@ -168,7 +168,7 @@ pub trait FontProvider { /// This type is needed because currently you can't make a trait object with two traits, like /// `Box`. Automatically implemented for all types that are [`Read`] and [`Seek`]. pub trait FontData: Read + Seek {} -impl FontData for T where T: Read + Seek {} +impl FontData for T {} /// Classifies a font by listing the font classes it is part of. ///