Struct google_speech1::RecognizeResponse[][src]

pub struct RecognizeResponse {
    pub results: Option<Vec<SpeechRecognitionResult>>,
}

The only message returned to the client by the Recognize method. It contains the result as zero or more sequential SpeechRecognitionResult messages.

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

Output-only Sequential list of transcription results corresponding to sequential portions of audio.

Trait Implementations

impl Default for RecognizeResponse
[src]

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

impl Clone for RecognizeResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RecognizeResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for RecognizeResponse
[src]

Auto Trait Implementations