Enum chlorate::ResultType[][src]

#[repr(i32)]pub enum ResultType {
    Unknown,
    Partial,
    Final,
    Prefetch,
}

Variants

Unknown
Partial

Partial result of a speech segment so far.

Final

Final result for this segment.

Prefetch

Prefetch is only sent for likely query strings. This won’t happen for non-query mode SODA, but we add here for completeness.

Implementations

impl ResultType[src]

pub fn is_valid(value: i32) -> bool[src]

Returns true if value is a variant of ResultType.

pub fn from_i32(value: i32) -> Option<ResultType>[src]

Converts an i32 to a ResultType, or None if value is not a valid variant.

Trait Implementations

impl Clone for ResultType[src]

impl Copy for ResultType[src]

impl Debug for ResultType[src]

impl Default for ResultType[src]

impl Eq for ResultType[src]

impl Hash for ResultType[src]

impl Ord for ResultType[src]

impl PartialEq<ResultType> for ResultType[src]

impl PartialOrd<ResultType> for ResultType[src]

impl StructuralEq for ResultType[src]

impl StructuralPartialEq for ResultType[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, U> Into<U> for T where
    U: From<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.