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>,
}

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

impl Clone for TextFormat[src]

impl Debug for TextFormat[src]

impl Default for TextFormat[src]

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

impl Part for TextFormat[src]

impl Serialize for TextFormat[src]

Auto Trait Implementations

impl RefUnwindSafe for TextFormat[src]

impl Send for TextFormat[src]

impl Sync for TextFormat[src]

impl Unpin for TextFormat[src]

impl UnwindSafe for TextFormat[src]

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