pub enum MixerError {
NotStreamable,
UnknownBus,
}Expand description
Why a Mixer bus operation failed.
Variants§
NotStreamable
An effect node is outside the real-time-streamable subset.
UnknownBus
The bus handle names no live bus (foreign or stale).
Trait Implementations§
Source§impl Clone for MixerError
impl Clone for MixerError
Source§fn clone(&self) -> MixerError
fn clone(&self) -> MixerError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MixerError
impl Debug for MixerError
Source§impl Display for MixerError
impl Display for MixerError
impl Eq for MixerError
Source§impl Error for MixerError
impl Error for MixerError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for MixerError
impl PartialEq for MixerError
impl StructuralPartialEq for MixerError
Auto Trait Implementations§
impl Freeze for MixerError
impl RefUnwindSafe for MixerError
impl Send for MixerError
impl Sync for MixerError
impl Unpin for MixerError
impl UnsafeUnpin for MixerError
impl UnwindSafe for MixerError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more