Skip to main content

IIProxyFactoryMethods

Trait IIProxyFactoryMethods 

Source
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§

Source

fn create_proxy_object(self, o: impl Into<Object>) -> Object

CreateProxyObject(crate::system::object::Object) overload

Source

fn get_target_type(self) -> SystemType

get_TargetType() overload

Source

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§

Source§

impl<__T: IIProxyFactory> IIProxyFactoryMethods for __T

Available on crate feature moon_sharp-interpreter-interop-iproxyfactory only.