pub struct UpdateParagraphStyleRequest {
pub fields: Option<FieldMask>,
pub paragraph_style: Option<ParagraphStyle>,
pub range: Option<Range>,
}Expand description
Update the styling of all paragraphs that overlap with the given range.
This type is not used in any activity, and only used as part of another schema.
Fields§
§fields: Option<FieldMask>The fields that should be updated. At least one field must be specified. The root paragraph_style is implied and should not be specified. A single "*" can be used as short-hand for listing every field. For example, to update the paragraph style’s alignment property, set fields to "alignment". To reset a property to its default value, include its field name in the field mask but leave the field itself unset.
paragraph_style: Option<ParagraphStyle>The styles to set on the paragraphs. Certain paragraph style changes may cause other changes in order to mirror the behavior of the Docs editor. See the documentation of ParagraphStyle for more information.
range: Option<Range>The range overlapping the paragraphs to style.
Trait Implementations§
Source§impl Clone for UpdateParagraphStyleRequest
impl Clone for UpdateParagraphStyleRequest
Source§fn clone(&self) -> UpdateParagraphStyleRequest
fn clone(&self) -> UpdateParagraphStyleRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more