#[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 ==.impl StructuralPartialEq for TopBottomRankedComputationBuilder
Auto Trait Implementations§
impl Freeze for TopBottomRankedComputationBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more