pub trait ICustomConvertersCollection: IObject {
// Provided methods
fn m_script2_clr(
self,
) -> Array<Dictionary_2<SystemType, Func_2<DynValue, Object>>> { ... }
fn set_m_script2_clr(
self,
value: Array<Dictionary_2<SystemType, Func_2<DynValue, Object>>>,
) { ... }
fn m_clr2_script(
self,
) -> Dictionary_2<SystemType, Func_3<Script, Object, DynValue>> { ... }
fn set_m_clr2_script(
self,
value: Dictionary_2<SystemType, Func_3<Script, Object, DynValue>>,
) { ... }
}Provided Methods§
fn m_script2_clr( self, ) -> Array<Dictionary_2<SystemType, Func_2<DynValue, Object>>>
fn set_m_script2_clr( self, value: Array<Dictionary_2<SystemType, Func_2<DynValue, Object>>>, )
fn m_clr2_script( self, ) -> Dictionary_2<SystemType, Func_3<Script, Object, DynValue>>
fn set_m_clr2_script( self, value: Dictionary_2<SystemType, Func_3<Script, Object, DynValue>>, )
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.