Struct google_texttospeech1::SynthesizeSpeechRequest[][src]

pub struct SynthesizeSpeechRequest {
    pub input: Option<SynthesisInput>,
    pub voice: Option<VoiceSelectionParams>,
    pub audio_config: Option<AudioConfig>,
}

The top-level message sent by the client for the SynthesizeSpeech method.

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

Required. The Synthesizer requires either plain text or SSML as input.

Required. The desired voice of the synthesized audio.

Required. The configuration of the synthesized audio.

Trait Implementations

impl Default for SynthesizeSpeechRequest
[src]

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

impl Clone for SynthesizeSpeechRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SynthesizeSpeechRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for SynthesizeSpeechRequest
[src]

Auto Trait Implementations