pub trait DataSource: Send + Sync + Debug {
    fn get(&self, path: String) -> Result<Option<RuntimeValue>, RuntimeError>;
}

Required Methods§

Implementors§