summaryrefslogtreecommitdiffstats
path: root/src/source.rs
diff options
context:
space:
mode:
authorRyan Leckey <leckey.ryan@gmail.com>2017-07-30 13:20:36 -0700
committerRyan Leckey <leckey.ryan@gmail.com>2017-07-30 13:20:36 -0700
commit14224be23dc2f253a240b85214927d97e1160669 (patch)
tree6f5b02b26aef5cf37bb14f32b9048165b67109ce /src/source.rs
parent71f4b182d1e56febda64bd620ae0e0f65de333cd (diff)
Remove ConfigResult; close #36
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())