#[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 get_source(&self) -> &Option<Vec<DimensionField>>
pub fn get_source(&self) -> &Option<Vec<DimensionField>>
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 get_destination(&self) -> &Option<Vec<DimensionField>>
pub fn get_destination(&self) -> &Option<Vec<DimensionField>>
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 get_weight(&self) -> &Option<Vec<MeasureField>>
pub fn get_weight(&self) -> &Option<Vec<MeasureField>>
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for SankeyDiagramAggregatedFieldWellsBuilder
impl Default for SankeyDiagramAggregatedFieldWellsBuilder
source§fn default() -> SankeyDiagramAggregatedFieldWellsBuilder
fn default() -> SankeyDiagramAggregatedFieldWellsBuilder
source§impl PartialEq for SankeyDiagramAggregatedFieldWellsBuilder
impl PartialEq for SankeyDiagramAggregatedFieldWellsBuilder
source§fn eq(&self, other: &SankeyDiagramAggregatedFieldWellsBuilder) -> bool
fn eq(&self, other: &SankeyDiagramAggregatedFieldWellsBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SankeyDiagramAggregatedFieldWellsBuilder
Auto Trait Implementations§
impl Freeze for SankeyDiagramAggregatedFieldWellsBuilder
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
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)
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>
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