pub enum ChartBuildStep {
Category,
PtInCategory,
Series,
PtInSeries,
AllPts,
GridLegend,
}Expand description
This simple type specifies an animation build step within a chart animation.
Variants§
Category
Animate a chart category for this animation build step
PtInCategory
Animate a point in a chart category for this animation build step
Series
Animate a chart series for this animation build step
PtInSeries
Animate a point in a chart series for this animation build step
AllPts
Animate all points within the chart for this animation build step
GridLegend
Animate the chart grid and legend for this animation build step
Trait Implementations§
Source§impl Clone for ChartBuildStep
impl Clone for ChartBuildStep
Source§fn clone(&self) -> ChartBuildStep
fn clone(&self) -> ChartBuildStep
Returns a duplicate 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 Debug for ChartBuildStep
impl Debug for ChartBuildStep
Source§impl FromStr for ChartBuildStep
impl FromStr for ChartBuildStep
impl Copy for ChartBuildStep
Auto Trait Implementations§
impl Freeze for ChartBuildStep
impl RefUnwindSafe for ChartBuildStep
impl Send for ChartBuildStep
impl Sync for ChartBuildStep
impl Unpin for ChartBuildStep
impl UnwindSafe for ChartBuildStep
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