[][src]Struct google_docs1::CreateParagraphBulletsRequest

pub struct CreateParagraphBulletsRequest {
    pub bullet_preset: Option<String>,
    pub range: Option<Range>,
}

Creates bullets for all of the paragraphs that overlap with the given range.

The nesting level of each paragraph will be determined by counting leading tabs in front of each paragraph. To avoid excess space between the bullet and the corresponding paragraph, these leading tabs are removed by this request. This may change the indices of parts of the text.

If the paragraph immediately before paragraphs being updated is in a list with a matching preset, the paragraphs being updated are added to that preceding list.

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

Fields

bullet_preset: Option<String>

The kinds of bullet glyphs to be used.

range: Option<Range>

The range to apply the bullet preset to.

Trait Implementations

impl Clone for CreateParagraphBulletsRequest[src]

impl Debug for CreateParagraphBulletsRequest[src]

impl Default for CreateParagraphBulletsRequest[src]

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

impl Part for CreateParagraphBulletsRequest[src]

impl Serialize for CreateParagraphBulletsRequest[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