#[non_exhaustive]pub struct LineSeriesAxisDisplayOptionsBuilder { /* private fields */ }Expand description
A builder for LineSeriesAxisDisplayOptions.
Implementations§
source§impl LineSeriesAxisDisplayOptionsBuilder
impl LineSeriesAxisDisplayOptionsBuilder
sourcepub fn axis_options(self, input: AxisDisplayOptions) -> Self
pub fn axis_options(self, input: AxisDisplayOptions) -> Self
The options that determine the presentation of the line series axis.
sourcepub fn set_axis_options(self, input: Option<AxisDisplayOptions>) -> Self
pub fn set_axis_options(self, input: Option<AxisDisplayOptions>) -> Self
The options that determine the presentation of the line series axis.
sourcepub fn get_axis_options(&self) -> &Option<AxisDisplayOptions>
pub fn get_axis_options(&self) -> &Option<AxisDisplayOptions>
The options that determine the presentation of the line series axis.
sourcepub fn missing_data_configurations(
self,
input: MissingDataConfiguration,
) -> Self
pub fn missing_data_configurations( self, input: MissingDataConfiguration, ) -> Self
Appends an item to missing_data_configurations.
To override the contents of this collection use set_missing_data_configurations.
The configuration options that determine how missing data is treated during the rendering of a line chart.
sourcepub fn set_missing_data_configurations(
self,
input: Option<Vec<MissingDataConfiguration>>,
) -> Self
pub fn set_missing_data_configurations( self, input: Option<Vec<MissingDataConfiguration>>, ) -> Self
The configuration options that determine how missing data is treated during the rendering of a line chart.
sourcepub fn get_missing_data_configurations(
&self,
) -> &Option<Vec<MissingDataConfiguration>>
pub fn get_missing_data_configurations( &self, ) -> &Option<Vec<MissingDataConfiguration>>
The configuration options that determine how missing data is treated during the rendering of a line chart.
sourcepub fn build(self) -> LineSeriesAxisDisplayOptions
pub fn build(self) -> LineSeriesAxisDisplayOptions
Consumes the builder and constructs a LineSeriesAxisDisplayOptions.
Trait Implementations§
source§impl Clone for LineSeriesAxisDisplayOptionsBuilder
impl Clone for LineSeriesAxisDisplayOptionsBuilder
source§fn clone(&self) -> LineSeriesAxisDisplayOptionsBuilder
fn clone(&self) -> LineSeriesAxisDisplayOptionsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for LineSeriesAxisDisplayOptionsBuilder
impl Default for LineSeriesAxisDisplayOptionsBuilder
source§fn default() -> LineSeriesAxisDisplayOptionsBuilder
fn default() -> LineSeriesAxisDisplayOptionsBuilder
source§impl PartialEq for LineSeriesAxisDisplayOptionsBuilder
impl PartialEq for LineSeriesAxisDisplayOptionsBuilder
source§fn eq(&self, other: &LineSeriesAxisDisplayOptionsBuilder) -> bool
fn eq(&self, other: &LineSeriesAxisDisplayOptionsBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for LineSeriesAxisDisplayOptionsBuilder
Auto Trait Implementations§
impl Freeze for LineSeriesAxisDisplayOptionsBuilder
impl RefUnwindSafe for LineSeriesAxisDisplayOptionsBuilder
impl Send for LineSeriesAxisDisplayOptionsBuilder
impl Sync for LineSeriesAxisDisplayOptionsBuilder
impl Unpin for LineSeriesAxisDisplayOptionsBuilder
impl UnwindSafe for LineSeriesAxisDisplayOptionsBuilder
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