summaryrefslogtreecommitdiffstats
path: root/src/file/toml.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/file/toml.rs
parente0fe3e151c24ab81f8d232b3e18841acacc3656e (diff)
Decorate Box<Source> with Send + Sync
Diffstat (limited to 'src/file/toml.rs')
-rw-r--r--src/file/toml.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/file/toml.rs b/src/file/toml.rs
index e3fb0d8..9b07cf0 100644
--- a/src/file/toml.rs
+++ b/src/file/toml.rs
@@ -10,7 +10,7 @@ pub struct Content {
}
impl Content {
- pub fn parse(text: &str, namespace: Option<&String>) -> Result<Box<Source>, Box<Error>> {
+ pub fn parse(text: &str, namespace: Option<&String>) -> Result<Box<Source + Send + Sync>, Box<Error>> {
// Parse
let mut parser = toml::Parser::new(text);
// TODO: Get a solution to make this return an Error-able