[][src]Enum oox::shared::drawingml::simpletypes::EffectContainerType

pub enum EffectContainerType {
    Sib,
    Tree,
}

This simple type determines the relationship between effects in a container, either sibling or tree.

Variants

Sib

Each effect is separately applied to the parent object.

Example

If the parent element contains an outer shadow and a reflection, the resulting effect is a shadow around the parent object and a reflection of the object. The reflection does not have a shadow.

Tree

Each effect is applied to the result of the previous effect.

Example

If the parent element contains an outer shadow followed by a glow, the shadow is first applied to the parent object. Then, the glow is applied to the shadow (rather than the original object). The resulting effect would be a glowing shadow.

Trait Implementations

impl Clone for EffectContainerType[src]

impl Copy for EffectContainerType[src]

impl Debug for EffectContainerType[src]

impl FromStr for EffectContainerType[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl PartialEq<EffectContainerType> for EffectContainerType[src]

impl StructuralPartialEq for EffectContainerType[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.