Skip to main content

Module client

Module client 

Source
Expand description

§Example

    let client = CloudShellService::builder().build().await?;
    let name = "name_value";
    let response = client.get_environment()
        .set_name(name)
        .send().await?;
    println!("response {:?}", response);

Concrete implementations of this client library traits.

Structs§

CloudShellService
Implements a client for the Cloud Shell API.