pub trait DictTraitConst {
fn as_raw_Dict(&self) -> *const c_void;
fn has(&self, key: &str) -> Result<bool> { ... }
unsafe fn ptr(&self, key: &str) -> Result<DictValue> { ... }
fn get(&self, key: &str) -> Result<DictValue> { ... }
}
Expand description
This class implements name-value dictionary, values are instances of DictValue.