Struct google_docs1::api::TextStyle [−][src]
Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style’s parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph’s corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that is contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor.
This type is not used in any activity, and only used as part of another schema.
Fields
background_color: Option<OptionalColor>
The background color of the text. If set, the color is either an RGB color or transparent, depending on the color
field.
baseline_offset: Option<String>
The text’s vertical offset from its normal position. Text with SUPERSCRIPT
or SUBSCRIPT
baseline offsets is automatically rendered in a smaller font size, computed based on the font_size
field. The font_size
itself is not affected by changes in this field.
bold: Option<bool>
Whether or not the text is rendered as bold.
font_size: Option<Dimension>
The size of the text’s font.
foreground_color: Option<OptionalColor>
The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the color
field.
italic: Option<bool>
Whether or not the text is italicized.
link: Option<Link>
The hyperlink destination of the text. If unset, there is no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated 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. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as "ABC\n123"
, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
small_caps: Option<bool>
Whether or not the text is in small capital letters.
strikethrough: Option<bool>
Whether or not the text is struck through.
underline: Option<bool>
Whether or not the text is underlined.
weighted_font_family: Option<WeightedFontFamily>
The font family and rendered weight of the text. If an update request specifies values for both weighted_font_family
and bold
, the weighted_font_family
is applied first, then bold
. If weighted_font_family#weight
is not set, it defaults to 400
. If weighted_font_family
is set, then weighted_font_family#font_family
must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
Trait Implementations
impl Clone for TextStyle
[src]
impl Debug for TextStyle
[src]
impl Default for TextStyle
[src]
impl<'de> Deserialize<'de> for TextStyle
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl Part for TextStyle
[src]
impl Serialize for TextStyle
[src]
Auto Trait Implementations
impl RefUnwindSafe for TextStyle
impl Send for TextStyle
impl Sync for TextStyle
impl Unpin for TextStyle
impl UnwindSafe for TextStyle
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,