Reformat where clauses 🎈

This commit is contained in:
Laurenz Mädje 2019-07-28 21:20:27 +02:00
parent 19be053cc3
commit 51faad45ad

View File

@ -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<dyn Read + Seek>`. Automatically implemented for all types that are [`Read`] and [`Seek`].
pub trait FontData: Read + Seek {}
impl<T> FontData for T where T: Read + Seek {}
impl<T: Read + Seek> FontData for T {}
/// Classifies a font by listing the font classes it is part of.
///