[][src]Enum timbre::StreamState

pub enum StreamState {
    Good,
    Underrun,
    Finished,
}

Indicates the state of an AudioSource.

Variants

Good

The source had sufficient data to fill the buffer.

Underrun

The source had insufficient data to fill the buffer, but more may come later.

Finished

The source has no more data and doesn't expect more.

Trait Implementations

impl Debug for StreamState[src]

impl Eq for StreamState[src]

impl PartialEq<StreamState> for StreamState[src]

impl StructuralEq for StreamState[src]

impl StructuralPartialEq for StreamState[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, 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.