[][src]Struct google_docs1::CreateHeaderRequest

pub struct CreateHeaderRequest {
    pub type_: Option<String>,
    pub section_break_location: Option<Location>,
}

Creates a Header. The new header is applied to the SectionStyle at the location of the SectionBreak if specificed, otherwise it is applied to the DocumentStyle.

If a header of the specified type already exists, a 400 bad request error is returned.

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

Fields

type_: Option<String>

The type of header to create.

section_break_location: Option<Location>

The location of the SectionBreak which begins the section this header should belong to. If `section_break_location' is unset or if it refers to the first section break in the document body, the header applies to the DocumentStyle

Trait Implementations

impl Clone for CreateHeaderRequest[src]

impl Debug for CreateHeaderRequest[src]

impl Default for CreateHeaderRequest[src]

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

impl Part for CreateHeaderRequest[src]

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