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