Struct rusoto_polly::DescribeVoicesOutput[][src]

pub struct DescribeVoicesOutput {
    pub next_token: Option<String>,
    pub voices: Option<Vec<Voice>>,
}

Fields

The pagination token to use in the next request to continue the listing of voices. NextToken is returned only if the response is truncated.

A list of voices with their properties.

Trait Implementations

impl Default for DescribeVoicesOutput
[src]

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

impl Debug for DescribeVoicesOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeVoicesOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeVoicesOutput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations