pub trait DictTraitConst {
// Required method
fn as_raw_Dict(&self) -> *const c_void;
// Provided methods
fn has(&self, key: &str) -> Result<bool> { ... }
unsafe fn ptr(&self, key: &str) -> Result<DictValue> { ... }
fn get(&self, key: &str) -> Result<DictValue> { ... }
}
Expand description
Constant methods for crate::dnn::Dict