pub enum StreamStatus {
    StreamStatusUnknown,
    StreamStatusNoData,
    StreamStatusPartialData,
    StreamStatusAllData,
    StreamStatusCanceled,
}
Expand description

StreamStatus defines the possible status of audio data stream.

Variants

StreamStatusUnknown

StreamStatusUnknown indicates the audio data stream status is unknown.

StreamStatusNoData

StreamStatusNoData indicates that the audio data stream contains no data.

StreamStatusPartialData

StreamStatusNoData indicates that the audio data stream contains no data.

StreamStatusAllData

StreamStatusAllData indicates the audio data stream contains all data of a speak request.

StreamStatusCanceled

StreamStatusCanceled indicates the audio data stream was canceled.

Implementations

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.