referrerpolicy=no-referrer-when-downgrade

Trait 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.

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.

Implementations on Foreign Types§

Source§

impl<Call> BatchCallBuilder<Call> for ()

Source§

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

Implementors§

Source§

impl<C> BatchCallBuilder<<C as Chain>::Call> for UtilityPalletBatchCallBuilder<C>
where C: ChainWithUtilityPallet + Chain,