referrerpolicy=no-referrer-when-downgrade

Trait substrate_relay_helper::BatchCallBuilder

source ·
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§

source

fn build_batch_call(&self, _calls: Vec<Call>) -> Call

Create batch call from given calls vector.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<Call> BatchCallBuilder<Call> for ()

source§

fn build_batch_call(&self, _calls: Vec<Call>) -> Call

Implementors§