Struct rusoto_polly::Voice[][src]

pub struct Voice {
    pub gender: Option<String>,
    pub id: Option<String>,
    pub language_code: Option<String>,
    pub language_name: Option<String>,
    pub name: Option<String>,
}

Description of the voice.

Fields

Gender of the voice.

Amazon Polly assigned voice ID. This is the ID that you specify when calling the SynthesizeSpeech operation.

Language code of the voice.

Human readable name of the language in English.

Name of the voice (for example, Salli, Kendra, etc.). This provides a human readable voice name that you might display in your application.

Trait Implementations

impl Default for Voice
[src]

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

impl Debug for Voice
[src]

Formats the value using the given formatter. Read more

impl Clone for Voice
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Voice
[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

impl Send for Voice

impl Sync for Voice