#[non_exhaustive]pub struct TopBottomMoversComputationBuilder { /* private fields */ }Expand description
A builder for TopBottomMoversComputation.
Implementations§
source§impl TopBottomMoversComputationBuilder
impl TopBottomMoversComputationBuilder
sourcepub fn computation_id(self, input: impl Into<String>) -> Self
pub fn computation_id(self, input: impl Into<String>) -> Self
The ID for a computation.
This field is required.sourcepub fn set_computation_id(self, input: Option<String>) -> Self
pub fn set_computation_id(self, input: Option<String>) -> Self
The ID for a computation.
sourcepub fn get_computation_id(&self) -> &Option<String>
pub fn get_computation_id(&self) -> &Option<String>
The ID for a computation.
sourcepub fn time(self, input: DimensionField) -> Self
pub fn time(self, input: DimensionField) -> Self
The time field that is used in a computation.
sourcepub fn set_time(self, input: Option<DimensionField>) -> Self
pub fn set_time(self, input: Option<DimensionField>) -> Self
The time field that is used in a computation.
sourcepub fn get_time(&self) -> &Option<DimensionField>
pub fn get_time(&self) -> &Option<DimensionField>
The time field that is used in a computation.
sourcepub fn category(self, input: DimensionField) -> Self
pub fn category(self, input: DimensionField) -> Self
The category field that is used in a computation.
sourcepub fn set_category(self, input: Option<DimensionField>) -> Self
pub fn set_category(self, input: Option<DimensionField>) -> Self
The category field that is used in a computation.
sourcepub fn get_category(&self) -> &Option<DimensionField>
pub fn get_category(&self) -> &Option<DimensionField>
The category field that is used in a computation.
sourcepub fn value(self, input: MeasureField) -> Self
pub fn value(self, input: MeasureField) -> Self
The value field that is used in a computation.
sourcepub fn set_value(self, input: Option<MeasureField>) -> Self
pub fn set_value(self, input: Option<MeasureField>) -> Self
The value field that is used in a computation.
sourcepub fn get_value(&self) -> &Option<MeasureField>
pub fn get_value(&self) -> &Option<MeasureField>
The value field that is used in a computation.
sourcepub fn mover_size(self, input: i32) -> Self
pub fn mover_size(self, input: i32) -> Self
The mover size setup of the top and bottom movers computation.
sourcepub fn set_mover_size(self, input: Option<i32>) -> Self
pub fn set_mover_size(self, input: Option<i32>) -> Self
The mover size setup of the top and bottom movers computation.
sourcepub fn get_mover_size(&self) -> &Option<i32>
pub fn get_mover_size(&self) -> &Option<i32>
The mover size setup of the top and bottom movers computation.
sourcepub fn sort_order(self, input: TopBottomSortOrder) -> Self
pub fn sort_order(self, input: TopBottomSortOrder) -> Self
The sort order setup of the top and bottom movers computation.
sourcepub fn set_sort_order(self, input: Option<TopBottomSortOrder>) -> Self
pub fn set_sort_order(self, input: Option<TopBottomSortOrder>) -> Self
The sort order setup of the top and bottom movers computation.
sourcepub fn get_sort_order(&self) -> &Option<TopBottomSortOrder>
pub fn get_sort_order(&self) -> &Option<TopBottomSortOrder>
The sort order setup of the top and bottom movers computation.
sourcepub fn type(self, input: TopBottomComputationType) -> Self
pub fn type(self, input: TopBottomComputationType) -> Self
The computation type. Choose from the following options:
-
TOP: Top movers computation.
-
BOTTOM: Bottom movers computation.
sourcepub fn set_type(self, input: Option<TopBottomComputationType>) -> Self
pub fn set_type(self, input: Option<TopBottomComputationType>) -> Self
The computation type. Choose from the following options:
-
TOP: Top movers computation.
-
BOTTOM: Bottom movers computation.
sourcepub fn get_type(&self) -> &Option<TopBottomComputationType>
pub fn get_type(&self) -> &Option<TopBottomComputationType>
The computation type. Choose from the following options:
-
TOP: Top movers computation.
-
BOTTOM: Bottom movers computation.
sourcepub fn build(self) -> Result<TopBottomMoversComputation, BuildError>
pub fn build(self) -> Result<TopBottomMoversComputation, BuildError>
Consumes the builder and constructs a TopBottomMoversComputation.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for TopBottomMoversComputationBuilder
impl Clone for TopBottomMoversComputationBuilder
source§fn clone(&self) -> TopBottomMoversComputationBuilder
fn clone(&self) -> TopBottomMoversComputationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for TopBottomMoversComputationBuilder
impl Default for TopBottomMoversComputationBuilder
source§fn default() -> TopBottomMoversComputationBuilder
fn default() -> TopBottomMoversComputationBuilder
source§impl PartialEq for TopBottomMoversComputationBuilder
impl PartialEq for TopBottomMoversComputationBuilder
source§fn eq(&self, other: &TopBottomMoversComputationBuilder) -> bool
fn eq(&self, other: &TopBottomMoversComputationBuilder) -> bool
self and other values to be equal, and is used
by ==.