summaryrefslogtreecommitdiffstats
path: root/src/source.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/source.rs')
-rw-r--r--src/source.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/source.rs b/src/source.rs
index 9bf28c5..7f689a6 100644
--- a/src/source.rs
+++ b/src/source.rs
@@ -62,9 +62,10 @@ impl Source for Vec<Box<Source + Send + Sync>> {
}
impl<T> Source for Vec<T>
- where T: Source + Sync + Send,
- T: Clone,
- T: 'static
+where
+ T: Source + Sync + Send,
+ T: Clone,
+ T: 'static,
{
fn clone_into_box(&self) -> Box<Source + Send + Sync> {
Box::new((*self).clone())