#[non_exhaustive]pub struct ComboChartFieldWellsBuilder { /* private fields */ }Expand description
A builder for ComboChartFieldWells.
Implementations§
source§impl ComboChartFieldWellsBuilder
impl ComboChartFieldWellsBuilder
sourcepub fn combo_chart_aggregated_field_wells(
self,
input: ComboChartAggregatedFieldWells,
) -> Self
pub fn combo_chart_aggregated_field_wells( self, input: ComboChartAggregatedFieldWells, ) -> Self
The aggregated field wells of a combo chart. Combo charts only have aggregated field wells. Columns in a combo chart are aggregated by category.
sourcepub fn set_combo_chart_aggregated_field_wells(
self,
input: Option<ComboChartAggregatedFieldWells>,
) -> Self
pub fn set_combo_chart_aggregated_field_wells( self, input: Option<ComboChartAggregatedFieldWells>, ) -> Self
The aggregated field wells of a combo chart. Combo charts only have aggregated field wells. Columns in a combo chart are aggregated by category.
sourcepub fn get_combo_chart_aggregated_field_wells(
&self,
) -> &Option<ComboChartAggregatedFieldWells>
pub fn get_combo_chart_aggregated_field_wells( &self, ) -> &Option<ComboChartAggregatedFieldWells>
The aggregated field wells of a combo chart. Combo charts only have aggregated field wells. Columns in a combo chart are aggregated by category.
sourcepub fn build(self) -> ComboChartFieldWells
pub fn build(self) -> ComboChartFieldWells
Consumes the builder and constructs a ComboChartFieldWells.
Trait Implementations§
source§impl Clone for ComboChartFieldWellsBuilder
impl Clone for ComboChartFieldWellsBuilder
source§fn clone(&self) -> ComboChartFieldWellsBuilder
fn clone(&self) -> ComboChartFieldWellsBuilder
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 ComboChartFieldWellsBuilder
impl Debug for ComboChartFieldWellsBuilder
source§impl Default for ComboChartFieldWellsBuilder
impl Default for ComboChartFieldWellsBuilder
source§fn default() -> ComboChartFieldWellsBuilder
fn default() -> ComboChartFieldWellsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ComboChartFieldWellsBuilder
impl PartialEq for ComboChartFieldWellsBuilder
source§fn eq(&self, other: &ComboChartFieldWellsBuilder) -> bool
fn eq(&self, other: &ComboChartFieldWellsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ComboChartFieldWellsBuilder
Auto Trait Implementations§
impl Freeze for ComboChartFieldWellsBuilder
impl RefUnwindSafe for ComboChartFieldWellsBuilder
impl Send for ComboChartFieldWellsBuilder
impl Sync for ComboChartFieldWellsBuilder
impl Unpin for ComboChartFieldWellsBuilder
impl UnwindSafe for ComboChartFieldWellsBuilder
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> 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)
🔬This is a nightly-only experimental API. (
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>
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.