Struct gcp_bigquery_client::tabledata::TableDataApi[][src]

pub struct TableDataApi { /* fields omitted */ }

A table data API handler.

Implementations

impl TableDataApi[src]

pub async fn insert_all(
    &self,
    project_id: &str,
    dataset_id: &str,
    table_id: &str,
    insert_request: TableDataInsertAllRequest
) -> Result<TableDataInsertAllResponse, BQError>
[src]

Streams data into BigQuery one record at a time without needing to run a load job. Requires the WRITER dataset role.

Arguments

  • project_id - Project ID of the inserted data
  • dataset_id - Dataset ID of the inserted data
  • table_id - Table ID of the inserted data
  • insert_request - Data to insert.

pub async fn list(
    &self,
    project_id: &str,
    dataset_id: &str,
    table_id: &str,
    parameters: ListQueryParameters
) -> Result<TableDataInsertAllResponse, BQError>
[src]

Lists the content of a table in rows.

Arguments

  • project_id - Project id of the table to list.
  • dataset_id - Dataset id of the table to list.
  • table_id - Table id of the table to list.
  • parameters - Additional query parameters.

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.