Trait ra_ap_hir_def::dyn_map::Policy[][src]

pub trait Policy {
    type K;
    type V;
    fn insert(map: &mut DynMap, key: Self::K, value: Self::V);
fn get<'a>(map: &'a DynMap, key: &Self::K) -> Option<&'a Self::V>; }

Associated Types

Required methods

Implementations on Foreign Types

Implementors