#[non_exhaustive]pub struct TopBottomRankedComputation { /* private fields */ }
Expand description
The top ranked and bottom ranked computation configuration.
Implementations§
source§impl TopBottomRankedComputation
impl TopBottomRankedComputation
sourcepub fn computation_id(&self) -> Option<&str>
pub fn computation_id(&self) -> Option<&str>
The ID for a computation.
sourcepub fn category(&self) -> Option<&DimensionField>
pub fn category(&self) -> Option<&DimensionField>
The category field that is used in a computation.
sourcepub fn value(&self) -> Option<&MeasureField>
pub fn value(&self) -> Option<&MeasureField>
The value field that is used in a computation.
sourcepub fn result_size(&self) -> i32
pub fn result_size(&self) -> i32
The result size of a top and bottom ranked computation.
sourcepub fn type(&self) -> Option<&TopBottomComputationType>
pub fn type(&self) -> Option<&TopBottomComputationType>
The computation type. Choose one of the following options:
-
TOP: A top ranked computation.
-
BOTTOM: A bottom ranked computation.
source§impl TopBottomRankedComputation
impl TopBottomRankedComputation
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TopBottomRankedComputation
.
Trait Implementations§
source§impl Clone for TopBottomRankedComputation
impl Clone for TopBottomRankedComputation
source§fn clone(&self) -> TopBottomRankedComputation
fn clone(&self) -> TopBottomRankedComputation
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 Debug for TopBottomRankedComputation
impl Debug for TopBottomRankedComputation
source§impl PartialEq<TopBottomRankedComputation> for TopBottomRankedComputation
impl PartialEq<TopBottomRankedComputation> for TopBottomRankedComputation
source§fn eq(&self, other: &TopBottomRankedComputation) -> bool
fn eq(&self, other: &TopBottomRankedComputation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.