pub struct TableDataInsertAllRequest {
pub ignore_unknown_values: Option<bool>,
pub kind: Option<String>,
pub rows: Option<Vec<TableDataInsertAllRequestRows>>,
pub skip_invalid_rows: Option<bool>,
pub template_suffix: Option<String>,
}
Expand description
There is no detailed description.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- insert all tabledata (request)
Fields§
§ignore_unknown_values: Option<bool>
[Optional] Accept rows that contain values that do not match the schema. The unknown values are ignored. Default is false, which treats unknown values as errors.
kind: Option<String>
The resource type of the response.
rows: Option<Vec<TableDataInsertAllRequestRows>>
The rows to insert.
skip_invalid_rows: Option<bool>
[Optional] Insert all valid rows of a request, even if invalid rows exist. The default value is false, which causes the entire request to fail if any invalid rows exist.
template_suffix: Option<String>
If specified, treats the destination table as a base template, and inserts the rows into an instance table named “{destination}{templateSuffix}”. BigQuery will manage creation of the instance table, using the schema of the base template table. See https://cloud.google.com/bigquery/streaming-data-into-bigquery#template-tables for considerations when working with templates tables.
Trait Implementations§
Source§impl Clone for TableDataInsertAllRequest
impl Clone for TableDataInsertAllRequest
Source§fn clone(&self) -> TableDataInsertAllRequest
fn clone(&self) -> TableDataInsertAllRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for TableDataInsertAllRequest
impl Debug for TableDataInsertAllRequest
Source§impl Default for TableDataInsertAllRequest
impl Default for TableDataInsertAllRequest
Source§fn default() -> TableDataInsertAllRequest
fn default() -> TableDataInsertAllRequest
Source§impl<'de> Deserialize<'de> for TableDataInsertAllRequest
impl<'de> Deserialize<'de> for TableDataInsertAllRequest
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>,
impl RequestValue for TableDataInsertAllRequest
Auto Trait Implementations§
impl Freeze for TableDataInsertAllRequest
impl RefUnwindSafe for TableDataInsertAllRequest
impl Send for TableDataInsertAllRequest
impl Sync for TableDataInsertAllRequest
impl Unpin for TableDataInsertAllRequest
impl UnwindSafe for TableDataInsertAllRequest
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