[][src]Enum oox::shared::drawingml::shapeprops::Effect

pub enum Effect {
    Container(EffectContainer),
    EffectReference(String),
    AlphaBiLevel(AlphaBiLevelEffect),
    AlphaCeiling,
    AlphaFloor,
    AlphaInverse(AlphaInverseEffect),
    AlphaModulate(AlphaModulateEffect),
    AlphaModulateFixed(AlphaModulateFixedEffect),
    AlphaOutset(AlphaOutsetEffect),
    AlphaReplace(AlphaReplaceEffect),
    BiLevel(BiLevelEffect),
    Blend(BlendEffect),
    Blur(BlurEffect),
    ColorChange(ColorChangeEffect),
    ColorReplace(ColorReplaceEffect),
    Duotone(DuotoneEffect),
    Fill(FillEffect),
    FillOverlay(FillOverlayEffect),
    Glow(GlowEffect),
    Grayscale,
    Hsl(HslEffect),
    InnerShadow(InnerShadowEffect),
    Luminance(LuminanceEffect),
    OuterShadow(OuterShadowEffect),
    PresetShadow(PresetShadowEffect),
    Reflection(ReflectionEffect),
    RelativeOffset(RelativeOffsetEffect),
    SoftEdges(SoftEdgesEffect),
    Tint(TintEffect),
    Transform(TransformEffect),
}

Variants

Container(EffectContainer)
EffectReference(String)

This element specifies a reference to an existing effect container.

Its value can be the name of an effect container, or one of four special references:

  • fill - refers to the fill effect
  • line - refers to the line effect
  • fillLine - refers to the combined fill and line effects
  • children - refers to the combined effects from logical child shapes or text
AlphaBiLevel(AlphaBiLevelEffect)
AlphaCeiling

This element represents an alpha ceiling effect.

Alpha (opacity) values greater than zero are changed to 100%. In other words, anything partially opaque becomes fully opaque.

AlphaFloor

This element represents an alpha floor effect.

Alpha (opacity) values less than 100% are changed to zero. In other words, anything partially transparent becomes fully transparent.

AlphaInverse(AlphaInverseEffect)
AlphaModulate(AlphaModulateEffect)
AlphaModulateFixed(AlphaModulateFixedEffect)
AlphaOutset(AlphaOutsetEffect)
AlphaReplace(AlphaReplaceEffect)
BiLevel(BiLevelEffect)
ColorChange(ColorChangeEffect)
ColorReplace(ColorReplaceEffect)
Duotone(DuotoneEffect)
FillOverlay(FillOverlayEffect)
Grayscale

This element specifies a gray scale effect. Converts all effect color values to a shade of gray, corresponding to their luminance. Effect alpha (opacity) values are unaffected.

InnerShadow(InnerShadowEffect)
Luminance(LuminanceEffect)
OuterShadow(OuterShadowEffect)
PresetShadow(PresetShadowEffect)
Reflection(ReflectionEffect)
RelativeOffset(RelativeOffsetEffect)
SoftEdges(SoftEdgesEffect)
Transform(TransformEffect)

Trait Implementations

impl Clone for Effect[src]

impl Debug for Effect[src]

impl PartialEq<Effect> for Effect[src]

impl StructuralPartialEq for Effect[src]

impl XsdChoice for Effect[src]

impl XsdType for Effect[src]

Auto Trait Implementations

impl RefUnwindSafe for Effect

impl Send for Effect

impl Sync for Effect

impl Unpin for Effect

impl UnwindSafe for Effect

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.