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

pub enum BlackWhiteMode {
    Color,
    Auto,
    Gray,
    LightGray,
    InverseGray,
    GrayWhite,
    BlackGray,
    BlackWhite,
    Black,
    White,
    Hidden,
}

This simple type specifies how an object should be rendered when specified to be in black and white mode.

Variants

Color

Object rendered with normal coloring

Auto

Object rendered with automatic coloring

Gray

Object rendered with gray coloring

LightGray

Object rendered with light gray coloring

InverseGray

Object rendered with inverse gray coloring

GrayWhite

Object rendered within gray and white coloring

BlackGray

Object rendered with black and gray coloring

BlackWhite

Object rendered within black and white coloring

Black

Object rendered with black-only coloring

White

Object rendered within white coloirng

Hidden

Object rendered with hidden coloring

Trait Implementations

impl Clone for BlackWhiteMode[src]

impl Copy for BlackWhiteMode[src]

impl Debug for BlackWhiteMode[src]

impl FromStr for BlackWhiteMode[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl PartialEq<BlackWhiteMode> for BlackWhiteMode[src]

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