[][src]Enum msoffice_shared::drawingml::PathFillMode

pub enum PathFillMode {
    None,
    Norm,
    Lighten,
    LightenLess,
    Darken,
    DarkenLess,
}

This simple type specifies the manner in which a path should be filled. The lightening and darkening of a path allow for certain parts of the shape to be colored lighter of darker depending on user preference.

Variants

None

This specifies that the corresponding path should have no fill.

Norm

This specifies that the corresponding path should have a normally shaded color applied to it’s fill.

Lighten

This specifies that the corresponding path should have a lightly shaded color applied to it’s fill.

LightenLess

This specifies that the corresponding path should have a slightly lighter shaded color applied to it’s fill.

Darken

This specifies that the corresponding path should have a darker shaded color applied to it’s fill.

DarkenLess

This specifies that the corresponding path should have a slightly darker shaded color applied to it’s fill.

Trait Implementations

impl Clone for PathFillMode[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for PathFillMode[src]

impl Debug for PathFillMode[src]

impl FromStr for PathFillMode[src]

type Err = ParseEnumVariantError

The associated error which can be returned from parsing.

Auto Trait Implementations

Blanket Implementations

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.

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

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

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