pub trait DictionaryExt {
    fn get_data(&self, desc: &str) -> MaybeOwned<'_, Value>;
fn keys(&self) -> Keys<'_, String, Value>;
fn get_data_by_key(&self, name: Spanned<&str>) -> Option<Value>;
fn get_mut_data_by_key(&mut self, name: &str) -> Option<&mut Value>;
fn insert_data_at_key(&mut self, name: &str, value: Value); }

Required methods

Implementations on Foreign Types

Implementors