[][src]Struct google_docs1::CreateFooterRequest

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

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

If a footer 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 footer to create.

section_break_location: Option<Location>

The location of the SectionBreak immediately preceding the section whose SectionStyle this footer should belong to. If this is unset or refers to the first section break in the document, the footer applies to the document style.

Trait Implementations

impl Clone for CreateFooterRequest[src]

impl Debug for CreateFooterRequest[src]

impl Default for CreateFooterRequest[src]

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

impl Part for CreateFooterRequest[src]

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