Skip to main content

Module client

Module client 

Source
Expand description

§Example

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

Concrete implementations of this client library traits.

Structs§

ContainerAnalysis
Implements a client for the Container Analysis API.