pub struct Builder { /* private fields */ }
Expand description
A builder for ReferenceLineDynamicDataConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn column(self, input: ColumnIdentifier) -> Self
pub fn column(self, input: ColumnIdentifier) -> Self
The column that the dynamic data targets.
sourcepub fn set_column(self, input: Option<ColumnIdentifier>) -> Self
pub fn set_column(self, input: Option<ColumnIdentifier>) -> Self
The column that the dynamic data targets.
sourcepub fn measure_aggregation_function(self, input: AggregationFunction) -> Self
pub fn measure_aggregation_function(self, input: AggregationFunction) -> Self
The aggregation function that is used in the dynamic data.
sourcepub fn set_measure_aggregation_function(
self,
input: Option<AggregationFunction>
) -> Self
pub fn set_measure_aggregation_function(
self,
input: Option<AggregationFunction>
) -> Self
The aggregation function that is used in the dynamic data.
sourcepub fn calculation(self, input: NumericalAggregationFunction) -> Self
pub fn calculation(self, input: NumericalAggregationFunction) -> Self
The calculation that is used in the dynamic data.
sourcepub fn set_calculation(self, input: Option<NumericalAggregationFunction>) -> Self
pub fn set_calculation(self, input: Option<NumericalAggregationFunction>) -> Self
The calculation that is used in the dynamic data.
sourcepub fn build(self) -> ReferenceLineDynamicDataConfiguration
pub fn build(self) -> ReferenceLineDynamicDataConfiguration
Consumes the builder and constructs a ReferenceLineDynamicDataConfiguration
.