referrerpolicy=no-referrer-when-downgrade
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.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<Call> BatchCallBuilderConstructor<Call> for ()

Implementors§