summaryrefslogtreecommitdiffstats
path: root/src/source.rs
diff options
context:
space:
mode:
authorRyan Leckey <leckey.ryan@gmail.com>2017-02-12 11:04:30 -0800
committerRyan Leckey <leckey.ryan@gmail.com>2017-02-12 11:04:30 -0800
commite29748b255ce97dfe9b4efcfbc4d9bcb3d694b97 (patch)
tree1b544db4cee3b392463edda743c3513c73f73459 /src/source.rs
parente0fe3e151c24ab81f8d232b3e18841acacc3656e (diff)
Decorate Box<Source> with Send + Sync
Diffstat (limited to 'src/source.rs')
-rw-r--r--src/source.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/source.rs b/src/source.rs
index e136176..2048791 100644
--- a/src/source.rs
+++ b/src/source.rs
@@ -8,5 +8,5 @@ pub trait Source {
}
pub trait SourceBuilder {
- fn build(&self) -> Result<Box<Source>, Box<Error>>;
+ fn build(&self) -> Result<Box<Source + Send + Sync>, Box<Error>>;
}