pub trait ProxyTrait: ProxyObjBase + Sized {
    // Provided methods
    fn issue_merged_token<Arg0: ProxyArg<ManagedBuffer<Self::Api>>, Arg1: ProxyArg<ManagedBuffer<Self::Api>>>(
        &mut self,
        token_display_name: Arg0,
        token_ticker: Arg1,
    ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>> { ... }
    fn add_mergeable_tokens_to_whitelist<Arg0: ProxyArg<MultiValueEncoded<Self::Api, TokenIdentifier<Self::Api>>>>(
        &mut self,
        tokens: Arg0,
    ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>> { ... }
    fn remove_mergeable_tokens_from_whitelist<Arg0: ProxyArg<MultiValueEncoded<Self::Api, TokenIdentifier<Self::Api>>>>(
        &mut self,
        tokens: Arg0,
    ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>> { ... }
    fn merged_token(
        &mut self,
    ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<NonFungibleTokenMapper<Self::Api>>> { ... }
    fn mergeable_tokens_whitelist(
        &mut self,
    ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<UnorderedSetMapper<Self::Api, TokenIdentifier<Self::Api>>>> { ... }
}

Provided Methods§

Source

fn issue_merged_token<Arg0: ProxyArg<ManagedBuffer<Self::Api>>, Arg1: ProxyArg<ManagedBuffer<Self::Api>>>( &mut self, token_display_name: Arg0, token_ticker: Arg1, ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>>

Source

fn add_mergeable_tokens_to_whitelist<Arg0: ProxyArg<MultiValueEncoded<Self::Api, TokenIdentifier<Self::Api>>>>( &mut self, tokens: Arg0, ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>>

Source

fn remove_mergeable_tokens_from_whitelist<Arg0: ProxyArg<MultiValueEncoded<Self::Api, TokenIdentifier<Self::Api>>>>( &mut self, tokens: Arg0, ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>>

Source

fn merged_token( &mut self, ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<NonFungibleTokenMapper<Self::Api>>>

Source

fn mergeable_tokens_whitelist( &mut self, ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<UnorderedSetMapper<Self::Api, TokenIdentifier<Self::Api>>>>

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§