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