[][src]Struct google_docs1::DeleteContentRangeRequest

pub struct DeleteContentRangeRequest {
    pub range: Option<Range>,
}

Deletes content from the document.

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

Fields

range: Option<Range>

The range of content to delete.

Deleting text that crosses a paragraph boundary may result in changes to paragraph styles, lists, positioned objects and bookmarks as the two paragraphs are merged.

Attempting to delete certain ranges can result in an invalid document structure in which case a 400 bad request error is returned.

Some examples of invalid delete requests include:

  • Deleting one code unit of a surrogate pair.
  • Deleting the last newline character of a Body, Header, Footer, Footnote, TableCell or TableOfContents.
  • Deleting the start or end of a Table, TableOfContents or Equation without deleting the entire element.
  • Deleting the newline character before a Table, TableOfContents or SectionBreak without deleting the element.
  • Deleting individual rows or cells of a table. Deleting the content within a table cell is allowed.

Trait Implementations

impl Part for DeleteContentRangeRequest[src]

impl Default for DeleteContentRangeRequest[src]

impl Clone for DeleteContentRangeRequest[src]

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

Performs copy-assignment from source. Read more

impl Debug for DeleteContentRangeRequest[src]

impl Serialize for DeleteContentRangeRequest[src]

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

Auto Trait Implementations

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]