box-open-sdk 0.4.1

Box API client for Rust (open source, community, punk rock) — typed models, async managers, and a reqwest runtime with retry, backoff, and token refresh.
Documentation
<!-- Generated by box-gantry. DO NOT EDIT. -->
# QueryManager

Reach these methods through the `query` field on `client::Client`.

## query

`POST /query`

**Request body** (`application/json`): `QueryRequestBody`

**Returns:** `QueryResults`

**Example**

```rust
let result = client.query.query(schemas::QueryRequestBody { /* … */ }).await?;
```

## query_insights

`POST /query_insights`

**Request body** (`application/json`): `QueryInsightsRequestBody`

**Returns:** `QueryInsights`

**Example**

```rust
let result = client.query.query_insights(schemas::QueryInsightsRequestBody { /* … */ }).await?;
```