#[non_exhaustive]pub struct SankeyDiagramAggregatedFieldWells {
pub source: Option<Vec<DimensionField>>,
pub destination: Option<Vec<DimensionField>>,
pub weight: Option<Vec<MeasureField>>,
}Expand description
The field well configuration of a sankey diagram.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.source: Option<Vec<DimensionField>>The source field wells of a sankey diagram.
destination: Option<Vec<DimensionField>>The destination field wells of a sankey diagram.
weight: Option<Vec<MeasureField>>The weight field wells of a sankey diagram.
Implementations§
source§impl SankeyDiagramAggregatedFieldWells
impl SankeyDiagramAggregatedFieldWells
sourcepub fn source(&self) -> &[DimensionField]
pub fn source(&self) -> &[DimensionField]
The source field wells of a sankey diagram.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .source.is_none().
sourcepub fn destination(&self) -> &[DimensionField]
pub fn destination(&self) -> &[DimensionField]
The destination field wells of a sankey diagram.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .destination.is_none().
sourcepub fn weight(&self) -> &[MeasureField]
pub fn weight(&self) -> &[MeasureField]
The weight field wells of a sankey diagram.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .weight.is_none().
source§impl SankeyDiagramAggregatedFieldWells
impl SankeyDiagramAggregatedFieldWells
sourcepub fn builder() -> SankeyDiagramAggregatedFieldWellsBuilder
pub fn builder() -> SankeyDiagramAggregatedFieldWellsBuilder
Creates a new builder-style object to manufacture SankeyDiagramAggregatedFieldWells.
Trait Implementations§
source§impl Clone for SankeyDiagramAggregatedFieldWells
impl Clone for SankeyDiagramAggregatedFieldWells
source§fn clone(&self) -> SankeyDiagramAggregatedFieldWells
fn clone(&self) -> SankeyDiagramAggregatedFieldWells
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for SankeyDiagramAggregatedFieldWells
impl PartialEq for SankeyDiagramAggregatedFieldWells
source§fn eq(&self, other: &SankeyDiagramAggregatedFieldWells) -> bool
fn eq(&self, other: &SankeyDiagramAggregatedFieldWells) -> bool
self and other values to be equal, and is used
by ==.