summaryrefslogtreecommitdiffstats
path: root/src/format.rs
blob: d2fe494a65e533ff3f794714b0aac208ba3ca3f9 (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
use std::{collections::HashMap, error::Error};

use crate::value::Value;

pub trait Format {
    fn parse(
        self,
        uri: Option<&String>,
        text: &str,
    ) -> Result<HashMap<String, Value>, Box<dyn Error + Send + Sync>>;
}

impl<F> Format for F 
where
    F: Fn(Option<&String>, &str) -> Result<HashMap<String, Value>, Box<dyn Error + Send + Sync>>
{
    fn parse(
        self,
        uri: Option<&String>,
        text: &str,
    ) -> Result<HashMap<String, Value>, Box<dyn Error + Send + Sync>> {
        self(uri, text)
    }
}