[][src]Struct google_docs1::Request

pub struct Request {
    pub insert_text: Option<InsertTextRequest>,
    pub create_paragraph_bullets: Option<CreateParagraphBulletsRequest>,
    pub update_table_row_style: Option<UpdateTableRowStyleRequest>,
    pub update_paragraph_style: Option<UpdateParagraphStyleRequest>,
    pub replace_all_text: Option<ReplaceAllTextRequest>,
    pub insert_table_column: Option<InsertTableColumnRequest>,
    pub delete_table_row: Option<DeleteTableRowRequest>,
    pub insert_page_break: Option<InsertPageBreakRequest>,
    pub create_named_range: Option<CreateNamedRangeRequest>,
    pub update_table_column_properties: Option<UpdateTableColumnPropertiesRequest>,
    pub delete_content_range: Option<DeleteContentRangeRequest>,
    pub delete_paragraph_bullets: Option<DeleteParagraphBulletsRequest>,
    pub delete_named_range: Option<DeleteNamedRangeRequest>,
    pub insert_table: Option<InsertTableRequest>,
    pub insert_table_row: Option<InsertTableRowRequest>,
    pub update_text_style: Option<UpdateTextStyleRequest>,
    pub delete_positioned_object: Option<DeletePositionedObjectRequest>,
    pub delete_table_column: Option<DeleteTableColumnRequest>,
    pub insert_inline_image: Option<InsertInlineImageRequest>,
}

A single update to apply to a document.

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

Fields

insert_text: Option<InsertTextRequest>

Inserts text at the specified location.

create_paragraph_bullets: Option<CreateParagraphBulletsRequest>

Creates bullets for paragraphs.

update_table_row_style: Option<UpdateTableRowStyleRequest>

Updates the row style in a table.

update_paragraph_style: Option<UpdateParagraphStyleRequest>

Updates the paragraph style at the specified range.

replace_all_text: Option<ReplaceAllTextRequest>

Replaces all instances of the specified text.

insert_table_column: Option<InsertTableColumnRequest>

Inserts an empty column into a table.

delete_table_row: Option<DeleteTableRowRequest>

Deletes a row from a table.

insert_page_break: Option<InsertPageBreakRequest>

Inserts a page break at the specified location.

create_named_range: Option<CreateNamedRangeRequest>

Creates a named range.

update_table_column_properties: Option<UpdateTableColumnPropertiesRequest>

Updates the properties of columns in a table.

delete_content_range: Option<DeleteContentRangeRequest>

Deletes content from the document.

delete_paragraph_bullets: Option<DeleteParagraphBulletsRequest>

Deletes bullets from paragraphs.

delete_named_range: Option<DeleteNamedRangeRequest>

Deletes a named range.

insert_table: Option<InsertTableRequest>

Inserts a table at the specified location.

insert_table_row: Option<InsertTableRowRequest>

Inserts an empty row into a table.

update_text_style: Option<UpdateTextStyleRequest>

Updates the text style at the specified range.

delete_positioned_object: Option<DeletePositionedObjectRequest>

Deletes a positioned object from the document.

delete_table_column: Option<DeleteTableColumnRequest>

Deletes a column from a table.

insert_inline_image: Option<InsertInlineImageRequest>

Inserts an inline image at the specified location.

Trait Implementations

impl Part for Request[src]

impl Default for Request[src]

impl Clone for Request[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Request[src]

impl Serialize for Request[src]

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

Auto Trait Implementations

impl Send for Request

impl Unpin for Request

impl Sync for Request

impl UnwindSafe for Request

impl RefUnwindSafe for Request

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]