Struct google_sheets4::api::UpdateDataSourceRequest[][src]

pub struct UpdateDataSourceRequest {
    pub data_source: Option<DataSource>,
    pub fields: Option<String>,
}

Updates a data source. After the data source is updated successfully, an execution is triggered to refresh the associated DATA_SOURCE sheet to read data from the updated data source. The request requires an additional bigquery.readonly OAuth scope.

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

Fields

data_source: Option<DataSource>

The data source to update.

fields: Option<String>

The fields that should be updated. At least one field must be specified. The root dataSource is implied and should not be specified. A single "*" can be used as short-hand for listing every field.

Trait Implementations

impl Clone for UpdateDataSourceRequest[src]

impl Debug for UpdateDataSourceRequest[src]

impl Default for UpdateDataSourceRequest[src]

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

impl Part for UpdateDataSourceRequest[src]

impl Serialize for UpdateDataSourceRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for UpdateDataSourceRequest[src]

impl Send for UpdateDataSourceRequest[src]

impl Sync for UpdateDataSourceRequest[src]

impl Unpin for UpdateDataSourceRequest[src]

impl UnwindSafe for UpdateDataSourceRequest[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.