pub trait IIProxyFactoryMethods: IIProxyFactory {
// Provided methods
fn create_proxy_object(self, o: impl Into<Object>) -> Object { ... }
fn get_target_type(self) -> SystemType { ... }
fn get_proxy_type(self) -> SystemType { ... }
}Provided Methods§
Sourcefn create_proxy_object(self, o: impl Into<Object>) -> Object
fn create_proxy_object(self, o: impl Into<Object>) -> Object
CreateProxyObject(crate::system::object::Object) overload
Sourcefn get_target_type(self) -> SystemType
fn get_target_type(self) -> SystemType
get_TargetType() overload
Sourcefn get_proxy_type(self) -> SystemType
fn get_proxy_type(self) -> SystemType
get_ProxyType() overload
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.
Implementors§
impl<__T: IIProxyFactory> IIProxyFactoryMethods for __T
Available on crate feature
moon_sharp-interpreter-interop-iproxyfactory only.