referrerpolicy=no-referrer-when-downgrade
substrate_relay_helper

Trait BatchCallBuilderConstructor

Source
pub trait BatchCallBuilderConstructor<Call>: Clone {
    type CallBuilder: BatchCallBuilder<Call>;

    // Required method
    fn new_builder() -> Option<Self::CallBuilder>;
}
Expand description

Batch call builder constructor.

Required Associated Types§

Source

type CallBuilder: BatchCallBuilder<Call>

Call builder, used by this constructor.

Required Methods§

Source

fn new_builder() -> Option<Self::CallBuilder>

Create a new instance of a batch call builder.

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> BatchCallBuilderConstructor<Call> for ()

Implementors§

Source§

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