pub struct DataSourceTable {
pub column_selection_type: Option<String>,
pub columns: Option<Vec<DataSourceColumnReference>>,
pub data_execution_status: Option<DataExecutionStatus>,
pub data_source_id: Option<String>,
pub filter_specs: Option<Vec<FilterSpec>>,
pub row_limit: Option<i32>,
pub sort_specs: Option<Vec<SortSpec>>,
}
Expand description
A data source table, which allows the user to import a static table of data from the DataSource into Sheets. This is also known as “Extract” in the Sheets editor.
This type is not used in any activity, and only used as part of another schema.
Fields§
§column_selection_type: Option<String>
The type to select columns for the data source table. Defaults to SELECTED.
columns: Option<Vec<DataSourceColumnReference>>
Columns selected for the data source table. The column_selection_type must be SELECTED.
data_execution_status: Option<DataExecutionStatus>
Output only. The data execution status.
data_source_id: Option<String>
The ID of the data source the data source table is associated with.
filter_specs: Option<Vec<FilterSpec>>
Filter specifications in the data source table.
row_limit: Option<i32>
The limit of rows to return. If not set, a default limit is applied. Please refer to the Sheets editor for the default and max limit.
sort_specs: Option<Vec<SortSpec>>
Sort specifications in the data source table. The result of the data source table is sorted based on the sort specifications in order.
Trait Implementations§
Source§impl Clone for DataSourceTable
impl Clone for DataSourceTable
Source§fn clone(&self) -> DataSourceTable
fn clone(&self) -> DataSourceTable
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DataSourceTable
impl Debug for DataSourceTable
Source§impl Default for DataSourceTable
impl Default for DataSourceTable
Source§fn default() -> DataSourceTable
fn default() -> DataSourceTable
Source§impl<'de> Deserialize<'de> for DataSourceTable
impl<'de> Deserialize<'de> for DataSourceTable
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for DataSourceTable
impl Serialize for DataSourceTable
impl Part for DataSourceTable
Auto Trait Implementations§
impl Freeze for DataSourceTable
impl RefUnwindSafe for DataSourceTable
impl Send for DataSourceTable
impl Sync for DataSourceTable
impl Unpin for DataSourceTable
impl UnwindSafe for DataSourceTable
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more