[][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 Clone for DeleteContentRangeRequest[src]

impl Debug for DeleteContentRangeRequest[src]

impl Default for DeleteContentRangeRequest[src]

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

impl Part for DeleteContentRangeRequest[src]

impl Serialize for DeleteContentRangeRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> Typeable for T where
    T: Any