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

pub enum BlipEffect {
    AlphaBiLevel(AlphaBiLevelEffect),
    AlphaCeiling,
    AlphaFloor,
    AlphaInverse(AlphaInverseEffect),
    AlphaModulate(AlphaModulateEffect),
    AlphaModulateFixed(AlphaModulateFixedEffect),
    AlphaReplace(AlphaReplaceEffect),
    BiLevel(BiLevelEffect),
    Blur(BlurEffect),
    ColorChange(ColorChangeEffect),
    ColorReplace(ColorReplaceEffect),
    Duotone(DuotoneEffect),
    FillOverlay(FillOverlayEffect),
    Grayscale,
    Hsl(HslEffect),
    Luminance(LuminanceEffect),
    Tint(TintEffect),
}

Variants

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)
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.

Luminance(LuminanceEffect)

Trait Implementations

impl Clone for BlipEffect[src]

impl Debug for BlipEffect[src]

impl PartialEq<BlipEffect> for BlipEffect[src]

impl StructuralPartialEq for BlipEffect[src]

impl XsdChoice for BlipEffect[src]

impl XsdType for BlipEffect[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.