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.
Object Safety§
This trait is not object safe.