#[non_exhaustive]pub struct LineChartSeriesSettingsBuilder { /* private fields */ }Expand description
A builder for LineChartSeriesSettings.
Implementations§
source§impl LineChartSeriesSettingsBuilder
impl LineChartSeriesSettingsBuilder
sourcepub fn line_style_settings(self, input: LineChartLineStyleSettings) -> Self
pub fn line_style_settings(self, input: LineChartLineStyleSettings) -> Self
Line styles options for a line series in LineChartVisual.
sourcepub fn set_line_style_settings(
self,
input: Option<LineChartLineStyleSettings>,
) -> Self
pub fn set_line_style_settings( self, input: Option<LineChartLineStyleSettings>, ) -> Self
Line styles options for a line series in LineChartVisual.
sourcepub fn get_line_style_settings(&self) -> &Option<LineChartLineStyleSettings>
pub fn get_line_style_settings(&self) -> &Option<LineChartLineStyleSettings>
Line styles options for a line series in LineChartVisual.
sourcepub fn marker_style_settings(self, input: LineChartMarkerStyleSettings) -> Self
pub fn marker_style_settings(self, input: LineChartMarkerStyleSettings) -> Self
Marker styles options for a line series in LineChartVisual.
sourcepub fn set_marker_style_settings(
self,
input: Option<LineChartMarkerStyleSettings>,
) -> Self
pub fn set_marker_style_settings( self, input: Option<LineChartMarkerStyleSettings>, ) -> Self
Marker styles options for a line series in LineChartVisual.
sourcepub fn get_marker_style_settings(&self) -> &Option<LineChartMarkerStyleSettings>
pub fn get_marker_style_settings(&self) -> &Option<LineChartMarkerStyleSettings>
Marker styles options for a line series in LineChartVisual.
sourcepub fn build(self) -> LineChartSeriesSettings
pub fn build(self) -> LineChartSeriesSettings
Consumes the builder and constructs a LineChartSeriesSettings.
Trait Implementations§
source§impl Clone for LineChartSeriesSettingsBuilder
impl Clone for LineChartSeriesSettingsBuilder
source§fn clone(&self) -> LineChartSeriesSettingsBuilder
fn clone(&self) -> LineChartSeriesSettingsBuilder
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 LineChartSeriesSettingsBuilder
impl Default for LineChartSeriesSettingsBuilder
source§fn default() -> LineChartSeriesSettingsBuilder
fn default() -> LineChartSeriesSettingsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for LineChartSeriesSettingsBuilder
impl PartialEq for LineChartSeriesSettingsBuilder
source§fn eq(&self, other: &LineChartSeriesSettingsBuilder) -> bool
fn eq(&self, other: &LineChartSeriesSettingsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for LineChartSeriesSettingsBuilder
Auto Trait Implementations§
impl Freeze for LineChartSeriesSettingsBuilder
impl RefUnwindSafe for LineChartSeriesSettingsBuilder
impl Send for LineChartSeriesSettingsBuilder
impl Sync for LineChartSeriesSettingsBuilder
impl Unpin for LineChartSeriesSettingsBuilder
impl UnwindSafe for LineChartSeriesSettingsBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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.