Trait IObservableMap_Impl
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,
vhnd: Ref<'_, MapChangedEventHandler<K, V>>,
) -> Result<i64>;
fn RemoveMapChanged(&self, token: i64) -> Result<()>;
}
Required Methods§
fn MapChanged(&self, vhnd: Ref<'_, MapChangedEventHandler<K, V>>) -> Result<i64>
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", so this trait is not object safe.