pub trait ProxyTrait:
    ProxyObjBase
    + Sized
    + ProxyTrait
    + ProxyTrait {
    // Provided method
    fn get_token_availability<Arg0: ProxyArg<TokenIdentifier<Self::Api>>>(
        &mut self,
        identifier: Arg0,
    ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<MultiValueEncoded<Self::Api, MultiValue2<u64, BigUint<Self::Api>>>>> { ... }
}

Provided Methods§

Source

fn get_token_availability<Arg0: ProxyArg<TokenIdentifier<Self::Api>>>( &mut self, identifier: Arg0, ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<MultiValueEncoded<Self::Api, MultiValue2<u64, BigUint<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§