Skip to main content

IObservableMap_Impl

Trait IObservableMap_Impl 

Source
pub trait IObservableMap_Impl<K, V>: IIterable_Impl<IKeyValuePair<K, V>> + IMap_Impl<K, V>
where K: RuntimeType + 'static, V: RuntimeType + 'static,
{ // Required methods fn MapChanged( &self, handler: Ref<'_, MapChangedEventHandler<K, V>>, ) -> Result<i64>; fn RemoveMapChanged(&self, token: i64) -> Result<()>; }

Required Methods§

Source

fn MapChanged( &self, handler: Ref<'_, MapChangedEventHandler<K, V>>, ) -> Result<i64>

Source

fn RemoveMapChanged(&self, token: i64) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§