pub trait BatchCallBuilder<Call>:
Clone
+ Send
+ Sync {
// Required method
fn build_batch_call(&self, _calls: Vec<Call>) -> Call;
}
Expand description
Batch call builder.
Required Methods§
Sourcefn build_batch_call(&self, _calls: Vec<Call>) -> Call
fn build_batch_call(&self, _calls: Vec<Call>) -> Call
Create batch call from given calls vector.
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.