#[non_exhaustive]pub struct SankeyDiagramChartConfigurationBuilder { /* private fields */ }
Expand description
A builder for SankeyDiagramChartConfiguration
.
Implementations§
source§impl SankeyDiagramChartConfigurationBuilder
impl SankeyDiagramChartConfigurationBuilder
sourcepub fn field_wells(self, input: SankeyDiagramFieldWells) -> Self
pub fn field_wells(self, input: SankeyDiagramFieldWells) -> Self
The field well configuration of a sankey diagram.
sourcepub fn set_field_wells(self, input: Option<SankeyDiagramFieldWells>) -> Self
pub fn set_field_wells(self, input: Option<SankeyDiagramFieldWells>) -> Self
The field well configuration of a sankey diagram.
sourcepub fn get_field_wells(&self) -> &Option<SankeyDiagramFieldWells>
pub fn get_field_wells(&self) -> &Option<SankeyDiagramFieldWells>
The field well configuration of a sankey diagram.
sourcepub fn sort_configuration(self, input: SankeyDiagramSortConfiguration) -> Self
pub fn sort_configuration(self, input: SankeyDiagramSortConfiguration) -> Self
The sort configuration of a sankey diagram.
sourcepub fn set_sort_configuration(
self,
input: Option<SankeyDiagramSortConfiguration>,
) -> Self
pub fn set_sort_configuration( self, input: Option<SankeyDiagramSortConfiguration>, ) -> Self
The sort configuration of a sankey diagram.
sourcepub fn get_sort_configuration(&self) -> &Option<SankeyDiagramSortConfiguration>
pub fn get_sort_configuration(&self) -> &Option<SankeyDiagramSortConfiguration>
The sort configuration of a sankey diagram.
sourcepub fn data_labels(self, input: DataLabelOptions) -> Self
pub fn data_labels(self, input: DataLabelOptions) -> Self
The data label configuration of a sankey diagram.
sourcepub fn set_data_labels(self, input: Option<DataLabelOptions>) -> Self
pub fn set_data_labels(self, input: Option<DataLabelOptions>) -> Self
The data label configuration of a sankey diagram.
sourcepub fn get_data_labels(&self) -> &Option<DataLabelOptions>
pub fn get_data_labels(&self) -> &Option<DataLabelOptions>
The data label configuration of a sankey diagram.
sourcepub fn interactions(self, input: VisualInteractionOptions) -> Self
pub fn interactions(self, input: VisualInteractionOptions) -> Self
The general visual interactions setup for a visual.
sourcepub fn set_interactions(self, input: Option<VisualInteractionOptions>) -> Self
pub fn set_interactions(self, input: Option<VisualInteractionOptions>) -> Self
The general visual interactions setup for a visual.
sourcepub fn get_interactions(&self) -> &Option<VisualInteractionOptions>
pub fn get_interactions(&self) -> &Option<VisualInteractionOptions>
The general visual interactions setup for a visual.
sourcepub fn build(self) -> SankeyDiagramChartConfiguration
pub fn build(self) -> SankeyDiagramChartConfiguration
Consumes the builder and constructs a SankeyDiagramChartConfiguration
.
Trait Implementations§
source§impl Clone for SankeyDiagramChartConfigurationBuilder
impl Clone for SankeyDiagramChartConfigurationBuilder
source§fn clone(&self) -> SankeyDiagramChartConfigurationBuilder
fn clone(&self) -> SankeyDiagramChartConfigurationBuilder
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 SankeyDiagramChartConfigurationBuilder
impl Default for SankeyDiagramChartConfigurationBuilder
source§fn default() -> SankeyDiagramChartConfigurationBuilder
fn default() -> SankeyDiagramChartConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for SankeyDiagramChartConfigurationBuilder
impl PartialEq for SankeyDiagramChartConfigurationBuilder
source§fn eq(&self, other: &SankeyDiagramChartConfigurationBuilder) -> bool
fn eq(&self, other: &SankeyDiagramChartConfigurationBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SankeyDiagramChartConfigurationBuilder
Auto Trait Implementations§
impl Freeze for SankeyDiagramChartConfigurationBuilder
impl RefUnwindSafe for SankeyDiagramChartConfigurationBuilder
impl Send for SankeyDiagramChartConfigurationBuilder
impl Sync for SankeyDiagramChartConfigurationBuilder
impl Unpin for SankeyDiagramChartConfigurationBuilder
impl UnwindSafe for SankeyDiagramChartConfigurationBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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.