pub struct SyncRecognizeResponse {
pub results: Option<Vec<SpeechRecognitionResult>>,
}Expand description
The only message returned to the client by SyncRecognize. 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).
- syncrecognize speech (response)
Fields§
§results: Option<Vec<SpeechRecognitionResult>>Output-only Sequential list of transcription results corresponding to sequential portions of audio.
Trait Implementations§
Source§impl Clone for SyncRecognizeResponse
impl Clone for SyncRecognizeResponse
Source§fn clone(&self) -> SyncRecognizeResponse
fn clone(&self) -> SyncRecognizeResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SyncRecognizeResponse
impl Debug for SyncRecognizeResponse
Source§impl Default for SyncRecognizeResponse
impl Default for SyncRecognizeResponse
Source§fn default() -> SyncRecognizeResponse
fn default() -> SyncRecognizeResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SyncRecognizeResponse
impl<'de> Deserialize<'de> for SyncRecognizeResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for SyncRecognizeResponse
impl Serialize for SyncRecognizeResponse
impl ResponseResult for SyncRecognizeResponse
Auto Trait Implementations§
impl Freeze for SyncRecognizeResponse
impl RefUnwindSafe for SyncRecognizeResponse
impl Send for SyncRecognizeResponse
impl Sync for SyncRecognizeResponse
impl Unpin for SyncRecognizeResponse
impl UnwindSafe for SyncRecognizeResponse
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
Mutably borrows from an owned value. Read more