#[non_exhaustive]pub struct HistogramAggregatedFieldWellsBuilder { /* private fields */ }Expand description
A builder for HistogramAggregatedFieldWells.
Implementations§
source§impl HistogramAggregatedFieldWellsBuilder
impl HistogramAggregatedFieldWellsBuilder
sourcepub fn values(self, input: MeasureField) -> Self
pub fn values(self, input: MeasureField) -> Self
Appends an item to values.
To override the contents of this collection use set_values.
The value field wells of a histogram. Values are aggregated by COUNT or DISTINCT_COUNT.
sourcepub fn set_values(self, input: Option<Vec<MeasureField>>) -> Self
pub fn set_values(self, input: Option<Vec<MeasureField>>) -> Self
The value field wells of a histogram. Values are aggregated by COUNT or DISTINCT_COUNT.
sourcepub fn get_values(&self) -> &Option<Vec<MeasureField>>
pub fn get_values(&self) -> &Option<Vec<MeasureField>>
The value field wells of a histogram. Values are aggregated by COUNT or DISTINCT_COUNT.
sourcepub fn build(self) -> HistogramAggregatedFieldWells
pub fn build(self) -> HistogramAggregatedFieldWells
Consumes the builder and constructs a HistogramAggregatedFieldWells.
Trait Implementations§
source§impl Clone for HistogramAggregatedFieldWellsBuilder
impl Clone for HistogramAggregatedFieldWellsBuilder
source§fn clone(&self) -> HistogramAggregatedFieldWellsBuilder
fn clone(&self) -> HistogramAggregatedFieldWellsBuilder
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 HistogramAggregatedFieldWellsBuilder
impl Default for HistogramAggregatedFieldWellsBuilder
source§fn default() -> HistogramAggregatedFieldWellsBuilder
fn default() -> HistogramAggregatedFieldWellsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for HistogramAggregatedFieldWellsBuilder
impl PartialEq for HistogramAggregatedFieldWellsBuilder
source§fn eq(&self, other: &HistogramAggregatedFieldWellsBuilder) -> bool
fn eq(&self, other: &HistogramAggregatedFieldWellsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for HistogramAggregatedFieldWellsBuilder
Auto Trait Implementations§
impl Freeze for HistogramAggregatedFieldWellsBuilder
impl RefUnwindSafe for HistogramAggregatedFieldWellsBuilder
impl Send for HistogramAggregatedFieldWellsBuilder
impl Sync for HistogramAggregatedFieldWellsBuilder
impl Unpin for HistogramAggregatedFieldWellsBuilder
impl UnwindSafe for HistogramAggregatedFieldWellsBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.