pub trait ProxyTrait: ProxyObjBase + Sized {
    // Provided method
    fn set_feature_flag_endpoint<Arg0: CodecInto<ManagedBuffer<Self::Api>>, Arg1: CodecInto<bool>>(
        &mut self,
        feature_name: Arg0,
        value: Arg1
    ) -> ContractCallNoPayment<Self::Api, ()> { ... }
}

Provided Methods§

source

fn set_feature_flag_endpoint<Arg0: CodecInto<ManagedBuffer<Self::Api>>, Arg1: CodecInto<bool>>( &mut self, feature_name: Arg0, value: Arg1 ) -> ContractCallNoPayment<Self::Api, ()>

Object Safety§

This trait is not object safe.

Implementors§