Struct google_sheets4::api::TextFormat[][src]

pub struct TextFormat {
    pub bold: Option<bool>,
    pub font_family: Option<String>,
    pub font_size: Option<i32>,
    pub foreground_color: Option<Color>,
    pub foreground_color_style: Option<ColorStyle>,
    pub italic: Option<bool>,
    pub link: Option<Link>,
    pub strikethrough: Option<bool>,
    pub underline: Option<bool>,
}
Expand description

The format of a run of text in a cell. Absent values indicate that the field isn’t specified.

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

Fields

bold: Option<bool>

True if the text is bold.

font_family: Option<String>

The font family.

font_size: Option<i32>

The size of the font.

foreground_color: Option<Color>

The foreground color of the text.

foreground_color_style: Option<ColorStyle>

The foreground color of the text. If foreground_color is also set, this field takes precedence.

italic: Option<bool>

True if the text is italicized.

link: Option<Link>

The link destination of the text, if any. Setting a link in a format run will clear an existing cell-level link. When a link is set, the text foreground color will be set to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults.

strikethrough: Option<bool>

True if the text has a strikethrough.

underline: Option<bool>

True if the text is underlined.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.