pub enum WebAudioStreamError {
UnexpectedDrop,
}
Expand description
Errors encountered while the web audio stream is running.
Variants§
UnexpectedDrop
The AudioWorkletNode
was unexpectedly dropped.
Trait Implementations§
Source§impl Debug for WebAudioStreamError
impl Debug for WebAudioStreamError
Source§impl Display for WebAudioStreamError
impl Display for WebAudioStreamError
Source§impl Error for WebAudioStreamError
impl Error for WebAudioStreamError
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()
Auto Trait Implementations§
impl Freeze for WebAudioStreamError
impl RefUnwindSafe for WebAudioStreamError
impl Send for WebAudioStreamError
impl Sync for WebAudioStreamError
impl Unpin for WebAudioStreamError
impl UnwindSafe for WebAudioStreamError
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