Struct google_sheets4::api::TextFormat [−][src]
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]
fn clone(&self) -> TextFormat[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for TextFormat[src]
impl Default for TextFormat[src]
fn default() -> TextFormat[src]
impl<'de> Deserialize<'de> for TextFormat[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
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]
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>,