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