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§
sourcetype CallBuilder: BatchCallBuilder<Call>
type CallBuilder: BatchCallBuilder<Call>
Call builder, used by this constructor.
Required Methods§
sourcefn new_builder() -> Option<Self::CallBuilder>
fn new_builder() -> Option<Self::CallBuilder>
Create a new instance of a batch call builder.
Object Safety§
This trait is not object safe.