pub trait EffectDB {
    // Required method
    fn get_value<'a>(
        &'a self,
        at: &Arc<EffectPath>
    ) -> Box<dyn Iterator<Item = (&'a Arc<String>, &'a Value)> + 'a>;
}
Expand description

A Generic Trait for EffectDB Functionality

Required Methods§

source

fn get_value<'a>( &'a self, at: &Arc<EffectPath> ) -> Box<dyn Iterator<Item = (&'a Arc<String>, &'a Value)> + 'a>

internal implementation to retrieve a JSON for the path

Implementors§