Skip to main content

Module client

Module client 

Source
Expand description

§Example

async fn sample(
) -> anyhow::Result<()> {
    let client = DatasetService::builder().build().await?;
    let response = client.get_dataset()
        /* set fields */
        .send().await?;
    println!("response {:?}", response);
    Ok(())
}

Concrete implementations of this client library traits.

Structs§

DatasetService
Implements a client for the BigQuery API.
JobService
Implements a client for the BigQuery API.
ModelService
Implements a client for the BigQuery API.
ProjectService
Implements a client for the BigQuery API.
RoutineService
Implements a client for the BigQuery API.
RowAccessPolicyService
Implements a client for the BigQuery API.
TableService
Implements a client for the BigQuery API.