[][src]Struct oox::shared::drawingml::core::AnimationChartElement

pub struct AnimationChartElement {
    pub series_index: Option<i32>,
    pub category_index: Option<i32>,
    pub build_step: ChartBuildStep,
}

Fields

series_index: Option<i32>

Specifies the index of the series within the corresponding chart that should be animated.

Defaults to -1

category_index: Option<i32>

Specifies the index of the category within the corresponding chart that should be animated.

Defaults to -1

build_step: ChartBuildStep

Specifies which step this part of the chart should be built using. For instance the chart can be built as one object meaning it is animated as a single graphic. Alternatively the chart can be animated, or built as separate pieces.

Methods

impl AnimationChartElement[src]

pub fn from_xml_element(xml_node: &XmlNode) -> Result<Self>[src]

Trait Implementations

impl Clone for AnimationChartElement[src]

impl Debug for AnimationChartElement[src]

impl PartialEq<AnimationChartElement> for AnimationChartElement[src]

impl StructuralPartialEq for AnimationChartElement[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.