pub trait IMethodMemberDescriptor: IFunctionMemberDescriptorBase {
// Provided methods
fn m_optimized_func(self) -> Func_3<Object, Array<Object>, Object> { ... }
fn set_m_optimized_func(self, value: Func_3<Object, Array<Object>, Object>) { ... }
fn m_optimized_action(self) -> Action_2<Object, Array<Object>> { ... }
fn set_m_optimized_action(self, value: Action_2<Object, Array<Object>>) { ... }
fn m_is_action(self) -> bool { ... }
fn set_m_is_action(self, value: bool) { ... }
fn m_is_array_ctor(self) -> bool { ... }
fn set_m_is_array_ctor(self, value: bool) { ... }
}Provided Methods§
fn m_optimized_func(self) -> Func_3<Object, Array<Object>, Object>
fn set_m_optimized_func(self, value: Func_3<Object, Array<Object>, Object>)
fn m_optimized_action(self) -> Action_2<Object, Array<Object>>
fn set_m_optimized_action(self, value: Action_2<Object, Array<Object>>)
fn m_is_action(self) -> bool
fn set_m_is_action(self, value: bool)
fn m_is_array_ctor(self) -> bool
fn set_m_is_array_ctor(self, value: bool)
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.