pub struct StreamingRecognizeResponse {
pub error: Option<Status>,
pub results: Vec<StreamingRecognitionResult>,
pub speech_event_type: i32,
}
Expand description
StreamingRecognizeResponse
is the only message returned to the client by
StreamingRecognize
. A series of zero or more StreamingRecognizeResponse
messages are streamed back to the client. If there is no recognizable
audio, and single_utterance
is set to false, then no messages are streamed
back to the client.
Here’s an example of a series of ten StreamingRecognizeResponse
s that might
be returned while processing audio:
-
results { alternatives { transcript: “tube” } stability: 0.01 }
-
results { alternatives { transcript: “to be a” } stability: 0.01 }
-
results { alternatives { transcript: “to be” } stability: 0.9 } results { alternatives { transcript: “ or not to be“ } stability: 0.01 }
-
results { alternatives { transcript: “to be or not to be” confidence: 0.92 } alternatives { transcript: “to bee or not to bee” } is_final: true }
-
results { alternatives { transcript: “ that’s“ } stability: 0.01 }
-
results { alternatives { transcript: “ that is“ } stability: 0.9 } results { alternatives { transcript: “ the question“ } stability: 0.01 }
-
results { alternatives { transcript: “ that is the question“ confidence: 0.98 } alternatives { transcript: “ that was the question“ } is_final: true }
Notes:
-
Only two of the above responses #4 and #7 contain final results; they are indicated by
is_final: true
. Concatenating these together generates the full transcript: “to be or not to be that is the question”. -
The others contain interim
results
. #3 and #6 contain two interimresults
: the first portion has a high stability and is less likely to change; the second portion has a low stability and is very likely to change. A UI designer might choose to show only high stabilityresults
. -
The specific
stability
andconfidence
values shown above are only for illustrative purposes. Actual values may vary. -
In each response, only one of these fields will be set:
error
,speech_event_type
, or one or more (repeated)results
.
Fields§
§error: Option<Status>
If set, returns a [google.rpc.Status][google.rpc.Status] message that specifies the error for the operation.
results: Vec<StreamingRecognitionResult>
This repeated list contains zero or more results that
correspond to consecutive portions of the audio currently being processed.
It contains zero or one is_final=true
result (the newly settled portion),
followed by zero or more is_final=false
results (the interim results).
speech_event_type: i32
Indicates the type of speech event.
Implementations§
Source§impl StreamingRecognizeResponse
impl StreamingRecognizeResponse
Sourcepub fn speech_event_type(&self) -> SpeechEventType
pub fn speech_event_type(&self) -> SpeechEventType
Returns the enum value of speech_event_type
, or the default if the field is set to an invalid enum value.
Sourcepub fn set_speech_event_type(&mut self, value: SpeechEventType)
pub fn set_speech_event_type(&mut self, value: SpeechEventType)
Sets speech_event_type
to the provided enum value.
Trait Implementations§
Source§impl Clone for StreamingRecognizeResponse
impl Clone for StreamingRecognizeResponse
Source§fn clone(&self) -> StreamingRecognizeResponse
fn clone(&self) -> StreamingRecognizeResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for StreamingRecognizeResponse
impl Debug for StreamingRecognizeResponse
Source§impl Default for StreamingRecognizeResponse
impl Default for StreamingRecognizeResponse
Source§fn default() -> StreamingRecognizeResponse
fn default() -> StreamingRecognizeResponse
Source§impl Message for StreamingRecognizeResponse
impl Message for StreamingRecognizeResponse
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Source§fn decode<B>(buf: B) -> Result<Self, DecodeError>
fn decode<B>(buf: B) -> Result<Self, DecodeError>
Source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
Source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
self
. Read moreSource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
self
.impl StructuralPartialEq for StreamingRecognizeResponse
Auto Trait Implementations§
impl Freeze for StreamingRecognizeResponse
impl RefUnwindSafe for StreamingRecognizeResponse
impl Send for StreamingRecognizeResponse
impl Sync for StreamingRecognizeResponse
impl Unpin for StreamingRecognizeResponse
impl UnwindSafe for StreamingRecognizeResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request