summaryrefslogtreecommitdiffstats
path: root/src/file/source/string.rs
blob: a2f66cb0816aff5f48097fea340533488b8d1f1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
use std::error::Error;
use std::result;
use std::str::FromStr;

use super::{FileFormat, FileSource};
use source::Source;

/// Describes a file sourced from a string
#[derive(Clone, Debug)]
pub struct FileSourceString(String);

impl<'a> From<&'a str> for FileSourceString {
    fn from(s: &'a str) -> Self {
        FileSourceString(s.into())
    }
}

impl FileSource for FileSourceString {
    fn resolve(
        &self,
        format_hint: Option<FileFormat>,
    ) -> Result<(Option<String>, String, FileFormat), Box<Error + Send + Sync>> {
        Ok((
            None,
            self.0.clone(),
            format_hint.expect("from_str requires a set file format"),
        ))
    }
}