Struct google_texttospeech1::SynthesizeSpeechResponse[][src]

pub struct SynthesizeSpeechResponse {
    pub audio_content: Option<String>,
}

The message returned to the client by 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

The audio data bytes encoded as specified in the request, including the header (For LINEAR16 audio, we include the WAV header). Note: as with all bytes fields, protobuffers use a pure binary representation, whereas JSON representations use base64.

Trait Implementations

impl Default for SynthesizeSpeechResponse
[src]

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

impl Clone for SynthesizeSpeechResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SynthesizeSpeechResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for SynthesizeSpeechResponse
[src]

Auto Trait Implementations