[][src]Struct google_sheets4::AutoFillRequest

pub struct AutoFillRequest {
    pub use_alternate_series: Option<bool>,
    pub range: Option<GridRange>,
    pub source_and_destination: Option<SourceAndDestination>,
}

Fills in more data based on existing data.

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

Fields

use_alternate_series: Option<bool>

True if we should generate data with the "alternate" series. This differs based on the type and amount of source data.

range: Option<GridRange>

The range to autofill. This will examine the range and detect the location that has data and automatically fill that data in to the rest of the range.

source_and_destination: Option<SourceAndDestination>

The source and destination areas to autofill. This explicitly lists the source of the autofill and where to extend that data.

Trait Implementations

impl Clone for AutoFillRequest[src]

impl Debug for AutoFillRequest[src]

impl Default for AutoFillRequest[src]

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

impl Part for AutoFillRequest[src]

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