#[non_exhaustive]pub struct ParallelismConfigurationBuilder { /* private fields */ }
Expand description
A builder for ParallelismConfiguration
.
Implementations§
source§impl ParallelismConfigurationBuilder
impl ParallelismConfigurationBuilder
sourcepub fn max_parallel_execution_steps(self, input: i32) -> Self
pub fn max_parallel_execution_steps(self, input: i32) -> Self
The max number of steps that can be executed in parallel.
sourcepub fn set_max_parallel_execution_steps(self, input: Option<i32>) -> Self
pub fn set_max_parallel_execution_steps(self, input: Option<i32>) -> Self
The max number of steps that can be executed in parallel.
sourcepub fn build(self) -> ParallelismConfiguration
pub fn build(self) -> ParallelismConfiguration
Consumes the builder and constructs a ParallelismConfiguration
.
Trait Implementations§
source§impl Clone for ParallelismConfigurationBuilder
impl Clone for ParallelismConfigurationBuilder
source§fn clone(&self) -> ParallelismConfigurationBuilder
fn clone(&self) -> ParallelismConfigurationBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for ParallelismConfigurationBuilder
impl Default for ParallelismConfigurationBuilder
source§fn default() -> ParallelismConfigurationBuilder
fn default() -> ParallelismConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ParallelismConfigurationBuilder> for ParallelismConfigurationBuilder
impl PartialEq<ParallelismConfigurationBuilder> for ParallelismConfigurationBuilder
source§fn eq(&self, other: &ParallelismConfigurationBuilder) -> bool
fn eq(&self, other: &ParallelismConfigurationBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.