pub trait ProxyTrait: ProxyObjBase + Sized {
// Provided method
fn set_feature_flag_endpoint<Arg0: ProxyArg<ManagedBuffer<Self::Api>>, Arg1: ProxyArg<bool>>(
&mut self,
feature_name: Arg0,
value: Arg1,
) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>> { ... }
}
Provided Methods§
fn set_feature_flag_endpoint<Arg0: ProxyArg<ManagedBuffer<Self::Api>>, Arg1: ProxyArg<bool>>( &mut self, feature_name: Arg0, value: Arg1, ) -> 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.