#[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.
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 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 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 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 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 build(self) -> TopBottomRankedComputation
pub fn build(self) -> TopBottomRankedComputation
Consumes the builder and constructs a TopBottomRankedComputation.
Trait Implementations§
source§impl Clone for TopBottomRankedComputationBuilder
impl Clone for TopBottomRankedComputationBuilder
source§fn clone(&self) -> TopBottomRankedComputationBuilder
fn clone(&self) -> TopBottomRankedComputationBuilder
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 TopBottomRankedComputationBuilder
impl Default for TopBottomRankedComputationBuilder
source§fn default() -> TopBottomRankedComputationBuilder
fn default() -> TopBottomRankedComputationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<TopBottomRankedComputationBuilder> for TopBottomRankedComputationBuilder
impl PartialEq<TopBottomRankedComputationBuilder> for TopBottomRankedComputationBuilder
source§fn eq(&self, other: &TopBottomRankedComputationBuilder) -> bool
fn eq(&self, other: &TopBottomRankedComputationBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TopBottomRankedComputationBuilder
Auto Trait Implementations§
impl RefUnwindSafe for TopBottomRankedComputationBuilder
impl Send for TopBottomRankedComputationBuilder
impl Sync for TopBottomRankedComputationBuilder
impl Unpin for TopBottomRankedComputationBuilder
impl UnwindSafe for TopBottomRankedComputationBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more