pub trait IObservableMap_Impl<K, V>: Sized + IIterable_Impl<IKeyValuePair<K, V>> + IMap_Impl<K, V>
where K: RuntimeType + 'static, V: RuntimeType + 'static,
{ // Required methods fn MapChanged( &self, vhnd: Option<&MapChangedEventHandler<K, V>> ) -> Result<EventRegistrationToken>; fn RemoveMapChanged(&self, token: &EventRegistrationToken) -> Result<()>; }

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§