[][src]Struct gcp_client::google::cloud::texttospeech::v1::SynthesizeSpeechResponse

pub struct SynthesizeSpeechResponse {
    pub audio_content: Vec<u8>,
}

The message returned to the client by the SynthesizeSpeech method.

Fields

audio_content: Vec<u8>

The audio data bytes encoded as specified in the request, including the header for encodings that are wrapped in containers (e.g. MP3, OGG_OPUS). 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 Clone for SynthesizeSpeechResponse[src]

impl Debug for SynthesizeSpeechResponse[src]

impl Default for SynthesizeSpeechResponse[src]

impl Message for SynthesizeSpeechResponse[src]

impl PartialEq<SynthesizeSpeechResponse> for SynthesizeSpeechResponse[src]

impl StructuralPartialEq for SynthesizeSpeechResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]