Struct gapi_grpc::google::assistant::embedded::v1alpha2::SpeechRecognitionResult[][src]

pub struct SpeechRecognitionResult {
    pub transcript: String,
    pub stability: f32,
}

The estimated transcription of a phrase the user has spoken. This could be a single segment or the full guess of the user’s spoken query.

Fields

transcript: String

Output-only Transcript text representing the words that the user spoke.

stability: f32

Output-only An estimate of the likelihood that the Assistant will not change its guess about this result. Values range from 0.0 (completely unstable) to 1.0 (completely stable and final). The default of 0.0 is a sentinel value indicating stability was not set.

Trait Implementations

impl Clone for SpeechRecognitionResult[src]

impl Debug for SpeechRecognitionResult[src]

impl Default for SpeechRecognitionResult[src]

impl Message for SpeechRecognitionResult[src]

impl PartialEq<SpeechRecognitionResult> for SpeechRecognitionResult[src]

impl StructuralPartialEq for SpeechRecognitionResult[src]

Auto Trait Implementations

impl RefUnwindSafe for SpeechRecognitionResult

impl Send for SpeechRecognitionResult

impl Sync for SpeechRecognitionResult

impl Unpin for SpeechRecognitionResult

impl UnwindSafe for SpeechRecognitionResult

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]