Struct google_bigquery2::TableDataInsertAllRequestRows
[−]
[src]
pub struct TableDataInsertAllRequestRows {
pub insert_id: Option<String>,
pub json: Option<JsonObject>,
}The rows to insert.
This type is not used in any activity, and only used as part of another schema.
Fields
insert_id: Option<String>
[Optional] A unique ID for each row. BigQuery uses this property to detect duplicate insertion requests on a best-effort basis.
json: Option<JsonObject>
[Required] A JSON object that contains a row of data. The object's properties and values must match the destination table's schema.
Trait Implementations
impl Default for TableDataInsertAllRequestRows[src]
fn default() -> TableDataInsertAllRequestRows
Returns the "default value" for a type. Read more
impl Clone for TableDataInsertAllRequestRows[src]
fn clone(&self) -> TableDataInsertAllRequestRows
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more