#[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 ==.impl StructuralPartialEq for SankeyDiagramAggregatedFieldWells
Auto Trait Implementations§
impl Freeze for SankeyDiagramAggregatedFieldWells
impl RefUnwindSafe for SankeyDiagramAggregatedFieldWells
impl Send for SankeyDiagramAggregatedFieldWells
impl Sync for SankeyDiagramAggregatedFieldWells
impl Unpin for SankeyDiagramAggregatedFieldWells
impl UnwindSafe for SankeyDiagramAggregatedFieldWells
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
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>
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>
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 more