#[non_exhaustive]pub struct TopBottomRankedComputationBuilder { /* private fields */ }
Expand description
A builder for TopBottomRankedComputation
.
Implementations§
source§impl TopBottomRankedComputationBuilder
impl TopBottomRankedComputationBuilder
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 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 result_size(self, input: i32) -> Self
pub fn result_size(self, input: i32) -> Self
The result size of a top and bottom ranked computation.
sourcepub fn set_result_size(self, input: Option<i32>) -> Self
pub fn set_result_size(self, input: Option<i32>) -> Self
The result size of a top and bottom ranked computation.
sourcepub fn get_result_size(&self) -> &Option<i32>
pub fn get_result_size(&self) -> &Option<i32>
The result size of a top and bottom ranked computation.
sourcepub fn type(self, input: TopBottomComputationType) -> Self
pub fn type(self, input: TopBottomComputationType) -> Self
The computation type. Choose one of the following options:
-
TOP: A top ranked computation.
-
BOTTOM: A bottom ranked computation.
sourcepub fn set_type(self, input: Option<TopBottomComputationType>) -> Self
pub fn set_type(self, input: Option<TopBottomComputationType>) -> Self
The computation type. Choose one of the following options:
-
TOP: A top ranked computation.
-
BOTTOM: A bottom ranked computation.
sourcepub fn get_type(&self) -> &Option<TopBottomComputationType>
pub fn get_type(&self) -> &Option<TopBottomComputationType>
The computation type. Choose one of the following options:
-
TOP: A top ranked computation.
-
BOTTOM: A bottom ranked computation.
sourcepub fn build(self) -> Result<TopBottomRankedComputation, BuildError>
pub fn build(self) -> Result<TopBottomRankedComputation, BuildError>
Consumes the builder and constructs a TopBottomRankedComputation
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for TopBottomRankedComputationBuilder
impl Clone for TopBottomRankedComputationBuilder
source§fn clone(&self) -> TopBottomRankedComputationBuilder
fn clone(&self) -> TopBottomRankedComputationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for TopBottomRankedComputationBuilder
impl Default for TopBottomRankedComputationBuilder
source§fn default() -> TopBottomRankedComputationBuilder
fn default() -> TopBottomRankedComputationBuilder
source§impl PartialEq for TopBottomRankedComputationBuilder
impl PartialEq for TopBottomRankedComputationBuilder
source§fn eq(&self, other: &TopBottomRankedComputationBuilder) -> bool
fn eq(&self, other: &TopBottomRankedComputationBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.