Struct google_sheets4::api::AppendDimensionRequest[][src]

pub struct AppendDimensionRequest {
    pub dimension: Option<String>,
    pub length: Option<i32>,
    pub sheet_id: Option<i32>,
}

Appends rows or columns to the end of a sheet.

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

Fields

dimension: Option<String>

Whether rows or columns should be appended.

length: Option<i32>

The number of rows or columns to append.

sheet_id: Option<i32>

The sheet to append rows or columns to.

Trait Implementations

impl Clone for AppendDimensionRequest[src]

impl Debug for AppendDimensionRequest[src]

impl Default for AppendDimensionRequest[src]

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

impl Part for AppendDimensionRequest[src]

impl Serialize for AppendDimensionRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for AppendDimensionRequest[src]

impl Send for AppendDimensionRequest[src]

impl Sync for AppendDimensionRequest[src]

impl Unpin for AppendDimensionRequest[src]

impl UnwindSafe for AppendDimensionRequest[src]

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> Instrument 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.