pub trait ProxyTrait: ProxyObjBase + Sized {
    // Provided method
    fn claim_developer_rewards<Arg0: ProxyArg<ManagedAddress<Self::Api>>>(
        &mut self,
        child_sc_address: Arg0,
    ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>> { ... }
}

Provided Methods§

Source

fn claim_developer_rewards<Arg0: ProxyArg<ManagedAddress<Self::Api>>>( &mut self, child_sc_address: Arg0, ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>>

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§