Struct google_cloudkms1::ListCryptoKeysResponse[][src]

pub struct ListCryptoKeysResponse {
    pub next_page_token: Option<String>,
    pub crypto_keys: Option<Vec<CryptoKey>>,
    pub total_size: Option<i32>,
}

Response message for KeyManagementService.ListCryptoKeys.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

A token to retrieve next page of results. Pass this value in ListCryptoKeysRequest.page_token to retrieve the next page of results.

The list of CryptoKeys.

The total number of CryptoKeys that matched the query.

Trait Implementations

impl Default for ListCryptoKeysResponse
[src]

Returns the "default value" for a type. Read more

impl Clone for ListCryptoKeysResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListCryptoKeysResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ListCryptoKeysResponse
[src]

Auto Trait Implementations