[][src]Struct google_sheets4::BaselineValueFormat

pub struct BaselineValueFormat {
    pub description: Option<String>,
    pub negative_color: Option<Color>,
    pub comparison_type: Option<String>,
    pub positive_color_style: Option<ColorStyle>,
    pub negative_color_style: Option<ColorStyle>,
    pub position: Option<TextPosition>,
    pub text_format: Option<TextFormat>,
    pub positive_color: Option<Color>,
}

Formatting options for baseline value.

This type is not used in any activity, and only used as part of another schema.

Fields

description: Option<String>

Description which is appended after the baseline value. This field is optional.

negative_color: Option<Color>

Color to be used, in case baseline value represents a negative change for key value. This field is optional.

comparison_type: Option<String>

The comparison type of key value with baseline value.

positive_color_style: Option<ColorStyle>

Color to be used, in case baseline value represents a positive change for key value. This field is optional. If positive_color is also set, this field takes precedence.

negative_color_style: Option<ColorStyle>

Color to be used, in case baseline value represents a negative change for key value. This field is optional. If negative_color is also set, this field takes precedence.

position: Option<TextPosition>

Specifies the horizontal text positioning of baseline value. This field is optional. If not specified, default positioning is used.

text_format: Option<TextFormat>

Text formatting options for baseline value.

positive_color: Option<Color>

Color to be used, in case baseline value represents a positive change for key value. This field is optional.

Trait Implementations

impl Clone for BaselineValueFormat[src]

impl Debug for BaselineValueFormat[src]

impl Default for BaselineValueFormat[src]

impl<'de> Deserialize<'de> for BaselineValueFormat[src]

impl Part for BaselineValueFormat[src]

impl Serialize for BaselineValueFormat[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.

impl<T> Typeable for T where
    T: Any