pub trait ProxyObjNew: ProxyObjBase {
type ProxyTo: ProxyObjBase;
// Required method
fn contract(self, address: ManagedAddress<Self::Api>) -> Self::ProxyTo;
}
Required Associated Types§
type ProxyTo: ProxyObjBase
Required Methods§
sourcefn contract(self, address: ManagedAddress<Self::Api>) -> Self::ProxyTo
fn contract(self, address: ManagedAddress<Self::Api>) -> Self::ProxyTo
Specify the target contract to call. Not taken into account for deploys.
Object Safety§
This trait is not object safe.