Struct google_sheets4::api::DataSourceParameter[][src]

pub struct DataSourceParameter {
    pub name: Option<String>,
    pub named_range_id: Option<String>,
    pub range: Option<GridRange>,
}

A parameter in a data source’s query. The parameter allows the user to pass in values from the spreadsheet into a query.

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

Fields

name: Option<String>

Named parameter. Must be a legitimate identifier for the DataSource that supports it. For example, BigQuery identifier.

named_range_id: Option<String>

ID of a NamedRange. Its size must be 1x1.

range: Option<GridRange>

A range that contains the value of the parameter. Its size must be 1x1.

Trait Implementations

impl Clone for DataSourceParameter[src]

impl Debug for DataSourceParameter[src]

impl Default for DataSourceParameter[src]

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

impl Part for DataSourceParameter[src]

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