Enum kira::CommandError[][src]

pub enum CommandError {
    CommandQueueFull,
    MutexPoisoned,
}

Something that can go wrong when sending a command to the audio thread.

Variants

CommandQueueFull

The command queue is full.

MutexPoisoned

A thread panicked while using the command producer.

Trait Implementations

impl Debug for CommandError[src]

impl Display for CommandError[src]

impl Error for CommandError[src]

impl From<CommandError> for AddSoundError[src]

impl From<CommandError> for RemoveSoundError[src]

impl From<CommandError> for AddSubTrackError[src]

impl From<CommandError> for AddSendTrackError[src]

impl From<CommandError> for RemoveSubTrackError[src]

impl From<CommandError> for RemoveSendTrackError[src]

impl From<CommandError> for AddStreamError[src]

impl From<CommandError> for RemoveStreamError[src]

impl From<CommandError> for StartSequenceError[src]

impl From<CommandError> for AddArrangementError[src]

impl From<CommandError> for RemoveArrangementError[src]

impl From<CommandError> for AddMetronomeError[src]

impl From<CommandError> for RemoveMetronomeError[src]

impl From<CommandError> for AddGroupError[src]

impl From<CommandError> for RemoveGroupError[src]

impl From<CommandError> for AddParameterError[src]

impl From<CommandError> for RemoveParameterError[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> ToString for T where
    T: Display + ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,