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
30
31
32
33
34
35
36
37
38
pub mod file;
pub mod string;
use std::error::Error;
use std::fmt::Debug;
use crate::{file::FileStoredFormat, Format};
pub trait FileSource<T>: Debug + Clone
where
T: Format + FileStoredFormat,
{
fn resolve(
&self,
format_hint: Option<T>,
) -> Result<FileSourceResult, Box<dyn Error + Send + Sync>>;
}
pub struct FileSourceResult {
pub(crate) uri: Option<String>,
pub(crate) content: String,
pub(crate) format: Box<dyn Format>,
}
impl FileSourceResult {
pub fn uri(&self) -> &Option<String> {
&self.uri
}
pub fn content(&self) -> &str {
self.content.as_str()
}
pub fn format(&self) -> &dyn Format {
self.format.as_ref()
}
}